Can you handle all button click events at once in a form?
Give coding.
Answer / 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 |
What are the components of the .net framework.
WHICH IS MORE SECURED AMONG JAVA AND .NET?
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?
How does the .net framework 3.0 relate to the .net framework 2.0?
Explain the 'page lifecycle' of an ASP.NET MVC?
How route table has been created in asp.net mvc?
Explain .Net Framework? Why we use it?
How is method overriding different from method overloading
What's the difference between const and readonly ?
about triggers?
Explain representational state transfer (rest) in detail?
What is side-by-side execution? Can two application one using private assembly and other using Shared assembly be stated as a side-by-side executables