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.

link|improve this question
What is a hiddenField? I know about class fields and HTML hidden inputs. Can you clarify? – Oded Dec 12 '10 at 17:54
Did you try handling the ValueChanged event of your HiddenField control? – Frédéric Hamidi Dec 12 '10 at 18:02
feedback

1 Answer

up vote 1 down vote accepted

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...

yourHiddenField.Value = strSerializedVersionOfYourObject;

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.

link|improve this answer
Thank you! Very simple))) – regerus Dec 12 '10 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.