| Author: ANIL PANDEY 29 Aug 2008 | Member Level: Diamond | Rating: Points: 1 |
Hi,
u have to store the Content Values in the Session or in the View State
u can enable the View state of the Control so that the value of the control can be preserve during the page refresh..
Thanks Anil
|
| Author: srikanthCh 29 Aug 2008 | Member Level: Bronze | Rating: Points: 2 |
hi, please check the view state propertie of text box as true.
u can retrive the values after post back.
thanks & regards srikanthch
|
| Author: D.Jeya kumar(JK) 29 Aug 2008 | Member Level: Diamond | Rating: Points: 3 |
Hi,
By enabling the viewstate =true automatically on each post back it will maintain the textbox value in hidden textbox as encrypted value and after post back the value is again decrypted and it will be shown in the text box.
Otherwise store in session variable etc., after the post back you need to again fill the textbox using the session values
Regards JK
|
| Author: Swaminathan 31 Aug 2008 | Member Level: Gold | Rating: Points: 3 |
To maintain the text box value after page is refreshed,
Set the view state property of your text box as true
If you want to use the same text box for different sessions, then set view state property of text box as false.
|
| Author: Desigan 01 Sep 2008 | Member Level: Bronze | Rating: Points: 1 |
Hi Thank u for giving this solution...
Regards, Desigan.K
|