Determining the PostBack event caller?

  • Thread starter Thread starter Wayne
  • Start date Start date
W

Wayne

I am wondering if it is at all possible to ascertain what cause the PostBack
event to occur?

Currently I have a DropDownList and 2 Radio buttons that cause a PB (this
may change to 2 Buttons if I am unable to determine the calling control)
whenever their status is changed.

Is it possible to obtain the calling control/method or is this outside the
scope?
 
The "Sender" event argument represents the object that fired the even. You
can use sender.getType.toString to determine what type of control cause the
postback, then you can cast sender into that type and then you could check
its name.
 
Where to do you want to find out the object that caused the postback?
 

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

Back
Top