Tagged Questions
7
votes
4answers
1k views
Which is best to use ViewState or hiddenfield
I have a page in which I want to maintain the value of object between post backs.
I am thinking of two ways to maintain the value of objects
Store the value in View Sate
Store the value in ...
3
votes
4answers
90 views
When should I consider to use SessionState to keep my variable values?
Is is possible to say something like
"If you have those situations then SessionState is a must to use for storing your values between postbacks."
Can you list me the basic reasons which forces an ...
0
votes
3answers
699 views
ASP.Net - How do I add a HiddenField from another WebControl and maintain it?
I've got a WebControl that I want to dynamically add a HiddenField from.
I've tried the following example: Click here, but that doesn't work due to the fact this.Page.Form is null in the Page Init ...