Check for button click in page load...

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
 
N

Natty Gur

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top