(Object source, EventArgs e)

  • Thread starter Thread starter Trevor Hartman
  • Start date Start date
T

Trevor Hartman

Hi,
You know the parameters i'm talking about? void whatever (Object source,
EvenArgs e)? how do you go about using those parameters? I need to get the
ID of the source object (this is the event handling function for that
object). How do i do this?
thanks
-trevor
 
thanks a lot
- Trevor

Kevin Spencer said:
Cast the source as System.Web.UI.Control and get the ID from it:

string strID = ((System.Web.UI.Control) sender).ID;

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.
 
Cast the source as System.Web.UI.Control and get the ID from it:

string strID = ((System.Web.UI.Control) sender).ID;

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.
 
Back
Top