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 :)
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.
mittalpa
Participant
1205 Points
255 Posts
Maintain new records in memory???
Oct 08, 2003 05:05 AM|LINK
pokhE_
Member
210 Points
42 Posts
Re: Maintain new records in memory???
Oct 08, 2003 02:17 PM|LINK