Is There any article that explain event call in asp.net?
-
What event? What context? We need more details if you want real answer..user447356– user4473562011-03-23 15:41:49 +00:00Commented Mar 23, 2011 at 15:41
-
1@Shadow Wizard : any event! DropDownlist SelectedIndexChange. Button Click and ...user495093– user4950932011-03-23 15:43:07 +00:00Commented Mar 23, 2011 at 15:43
Add a comment
|
1 Answer
The ASP.NET event model is documented here.
2 Comments
Frédéric Hamidi
@Raika, assuming
EnableViewState is true on the TextBox and on the page, nothing should be lost. Maybe you're resetting the text box value somewhere during the page lifecycle, or maybe you're clearing it on the client side before the postback occurs. I'd suggest you ask that in another question, along with all the necessary information: maybe others will have a better explanation.