Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
please suggest me how can i do that, give any link where i can learn , thank you in advance.
Posted
Comments
[no name] 9-Mar-13 8:29am    
My suggestion would be to write some code. www.google.com is the link you requested. You could probably find a whole lot of information at www.codeproject.com too.
Sushil Mate 9-Mar-13 8:46am    
You need to explain more.. what exactly you trying to achieve here.. Nevertheless, let me try to answer your question. you want to save data somewhere? why somewhere.. why cant you have that data in memory once user done editing save in the database. try to learn about how to store data in asp.net.... go through this link http://www.codeproject.com/Articles/8631/ASP-NET-s-Data-Storage-Objects
varun150 9-Mar-13 11:43am    
you are rite sir,you got my question i meant to save data in ,string ,list ,arry etc. but problem
would appear to map these data to table correctly i dont know how to that , i need to save data in large table........or can we make table,row ,column,etc in code..

thanks a lot sir for you tried to understand my the problem

1 solution

Hi Varun,
You can use session object for this purpose.
Steps
1) in page init initialise dataset
2) in page load not postback get data from db if required & store in session object
3) in page load in post back get data from session.
4) in actions like add/update/delete do actions on dataset & store in sesssion
5) In Final submit call save new added data, updated data in db.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900