Post Back problem !!!
-
hi i am dynamically binding textbox into a asp table ,after entering some values onclicking save button on postback table dissappears...so i couldnt access the values inside the textboxes.. plz help
-
hi i am dynamically binding textbox into a asp table ,after entering some values onclicking save button on postback table dissappears...so i couldnt access the values inside the textboxes.. plz help
Try with Ajax !!!
Best Regards ----------------- Abhijit Jana Microsoft Certified Professional "Success is Journey it's not a destination"
-
hi i am dynamically binding textbox into a asp table ,after entering some values onclicking save button on postback table dissappears...so i couldnt access the values inside the textboxes.. plz help
Where are you binding the textbox ? you need to persist the values added/or bind the textbox in Initialize event. Also check the ViewState attribute of Page directive in the aspx page make true and try one more time
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
hi i am dynamically binding textbox into a asp table ,after entering some values onclicking save button on postback table dissappears...so i couldnt access the values inside the textboxes.. plz help
Any controls that you add dynamically, you have to recreate every time the page reloads. The state of the controls is stored in ViewState, but not the controls themselves. If you just recreate the controls, they will pick up the state from ViewState themselves.
Experience is the sum of all the mistakes you have done.
-
hi i am dynamically binding textbox into a asp table ,after entering some values onclicking save button on postback table dissappears...so i couldnt access the values inside the textboxes.. plz help
Hi, You can use Request.Form collection to get the values of textboxes parameter. For that you need to know their client ID. I think, this will useful. Regards, Amar