The button on which user clicksPpedram13yAsked Apr 7, 2013, 2:34 AM1.4kVisual Basic .NETHow can we return the name of the button on which the user clicks in a webBrowser control?
Vishal Gilbile13y agoPosted Apr 7, 2013, 3:38 AMAccepted answerHello Friend, Your question is not that clear but what i've understood is that you want to return button name on click of it.you could try the following.Button b=(Button)sender;return b.Name;Hope that solves your problem.With Regards,Vishal Gilbile.
Vishal GilbilePosted Apr 7, 2013, 3:38 AM
Your question is not that clear but what i've understood is that you want to return button name on click of it.
you could try the following.
Button b=(Button)sender;
return b.Name;
Hope that solves your problem.
With Regards,
Vishal Gilbile.