Check for button click in page load...

  • Thread starter Thread starter Bob Erwin
  • Start date Start date
B

Bob Erwin

Hey,

I have an interesting problem that I need some assistance for...

It is my understanding that when you click a button on an ASP.NET page, it
will actually run the page load first and then run my button procedure. Is
there a way, that I can check to see if the button was clicked in the *page
load* before the code ever gets to my button procedure?

Mainly, I have some dynamic textboxes that I need to reset if a person
selects a radiolist, however, if they select the submit button, I don't want
to reset the textboxes.

Thanks for your help,
Bob
 
Hi,

1) If you look at the Form.Keys collection you will found only the
Button ID
that cause the postback.

2) RaisePostBackEvent is a method that you need to overload :
override protected void RaisePostBackEvent ( IPostBackEventHandler
sourceControl,
string eventArgument)
{
string s ((WebControl)sourceControl).ID ;
}


Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114

Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377

Know the overall picture
 
Back
Top