Can you handle all button click events at once in a form?
Give coding.
Answer Posted / seema dalal
suppose ,there r 3 buttons & we have to handle all button
click events at once. Then try following steps
1) Write eventhandler
Public Sub clickevent(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button1.Click, Button2.Click,
Button3.Click
Dim b As Button = CType(sender, Button)
Response.Write("hello:" & b.Text)
End Sub
2) then call this event handler on click event of eech
buttons.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are the two ways to add constraints to a route?
Is .net framework backwards compatible?
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
how do you query in entity model when the result has a join from from different database other than the entity model?
what is msl?
Explain peek method in tempdata in asp.net mvc?
What is the difference between renderaction and renderpartial?
What is domain class model?
what is entity framework advantage?
What is separation of concerns in asp.net mvc?
Explain tempdata in mvc?
How we can multiple submit buttons in ASP.Net MVC
What are the 3 main components of an asp.net mvc application?
Where is tempdata stored?
Which version of the common language runtime (clr) does the .net framework 3.0 use?