I have updatePanel and hiddenField in it. I need to save object to hiddenField without full pastback (only updatePanel updating). ViewState can't help, because it works only with full postback.
|
feedback
|
|
Put the HiddenField control and the control that triggers the event where you set the value within the ContentTemplate tags of the UpdatePanel. When you put those within the ContentTemplate tags it will post back asyncronously and in your code-behind you will be able to do something like...
Note that the type of the Value property of a HiddenField control is a string, so if you want to store an object in it, you'll have to serialize it as a string and when you are ready to use it, deserialize it back into your object. | |||
|
feedback
|
hiddenField? I know about classfieldsand HTML hidden inputs. Can you clarify? – Oded Dec 12 '10 at 17:54HiddenFieldcontrol? – Frédéric Hamidi Dec 12 '10 at 18:02