I read HTML Code from a txt File and give this code Literal.Text.
Example :
Literal.Text = "";
On save button click , I can get all control values.
But if page postback, all inputs values go to empty.
i must get value after postback too.
How can I solve this problem?
zhong chenPosted Jun 22, 2010, 11:43 PM
Requset.Form["txtValue_15"] to get value
and reset the literal.text with value just like
Literal.Text = "";
VikramPosted Jun 17, 2010, 5:07 AM
You can save the values of your Dynamic Control in the Session Object on the save
button Click Event. Then on PostBack get value from session object and assign it back to
it.
Regards,
VIkram
Murat CAKMAKPosted Jun 15, 2010, 9:57 AM
How can I do this?
John WiesePosted Jun 15, 2010, 9:13 AM