What is the best way to store string data across postback. I need to store an ID and name for multiple entities. I was thinking of using a datatable in viewstate, but would that make viewstate grow too large? I can't use a database yet because I'll be inserting a record that those other records need to be related to. So I'll just be storing them temporarily until the user submits the form.
|
|
|
|
|
|
|
You actually have a lot of options - the one you choose will entirely depend on the requirements of your own application.
As I said - what you choose to do will entirely depend on the needs and requirements of your application. |
||
|
|
|
|
you could just store them to a cookie, this would allow you to access them from Javascript too. Alternatively you could store a simple string array to the view state. A lot depends on what and how much information you wish to store. |
||
|
|
|
|
several ways (though not an exhaustive list):
|
||
|
|
|
|
ViewState is fine. If you are storing it across postbacks, a client-side solution is best. So, you'd be adding size somewhere--either in ViewState or hidden fields. If you want to do this server-side, you can use the Session, but remember to clean it up when you can. |
||
|
|
|
|
When I have this scenario I create a structure for my fields that I stuff into Viewstate. I'm okay with having a small structure added into the page size and lifecycle considering the entire page's controls set is there already :) Furthermore it cleans up after itself after you're done with the page, so there's no worrying about filling your Session with crap. |
||
|
|
|
|
Just a note on the side (as I can not post comments). ViewState is only preserved on a POST back, if you do a GET request in between it will get lost. So be careful not to loose your ID. |
||
|
|
|
|
I concur with the accepted answer but I would also add that if you only want to keep track of a simple key/value collection you would be better putting a generic Dictionary into either ViewState or Session:
|
||
|
|
