Maintain new records in memory???http://forums.asp.net/t/360030.aspx/1?Maintain+new+records+in+memory+Wed, 08 Oct 2003 14:30:20 -0400360030360030http://forums.asp.net/p/360030/360030.aspx/1?Maintain+new+records+in+memory+Maintain new records in memory??? Hi I am using VB.net/ASP.NET and SQL Server 2000 for web application. I am adding multiple new records using Order Form and saving them in database. After saving them in database, I want to display them in a datagrid. I don't want to retrive them from database. For that, I need to store them somewhere in memory. Thats where I need help. How can I acheive this logic? Please advice. Thanks in advance. Pankaj In Love with .NET :) 2003-10-08T05:05:13-04:00360397http://forums.asp.net/p/360030/360397.aspx/1?Re+Maintain+new+records+in+memory+Re: Maintain new records in memory??? you can store the datable object in the Session. the logic u can use is: Create DataTable object. Add data into it. Store it in the Session using Session["OrderData"] = (Syntax will change for vb.net) Save data. Bind the DataTable to the DataGrid. 2003-10-08T14:17:00-04:00