0

Is There any article that explain event call in asp.net?

2
  • What event? What context? We need more details if you want real answer.. Commented Mar 23, 2011 at 15:41
  • 1
    @Shadow Wizard : any event! DropDownlist SelectedIndexChange. Button Click and ... Commented Mar 23, 2011 at 15:43

1 Answer 1

2

The ASP.NET event model is documented here.

Sign up to request clarification or add additional context in comments.

2 Comments

a question : is there any situation that a viewstate lost in postback? i face a problem when a dropdownlist selectedindexchange and postback happend and my textbox value lost! not always. Rarely.
@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.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.