Can you handle all button click events at once in a form?
Give coding.



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

Post New Answer

More Dot Net Framework Interview Questions

If background completes its processing will it wait for foreground threads?

2 Answers   Kanbay,


What is the 'page life cycle' of an ASP.NET MVC?

0 Answers   NA,


Can I add mvc testcases in visual studio express?

0 Answers  


how to create session in .net

3 Answers  


What is the CTS

1 Answers  


I am going for H1B visa interview, I am not having bank statement ,is it neccesary for stamping process? how to handle the,consulate people without that statement ?

2 Answers  


What is filters in web api?

0 Answers  


can i change web.config settings from iis?

1 Answers   HCL, ReadySoft, Wipro,


Is it possible to unit test an mvc application without running the controllers in an asp.net process?

0 Answers  


I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.

0 Answers  


What is a model in programming?

0 Answers  


How we can add the CSS in ASP.Net MVC?

0 Answers  


Categories