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 |
If background completes its processing will it wait for foreground threads?
What is the 'page life cycle' of an ASP.NET MVC?
Can I add mvc testcases in visual studio express?
how to create session in .net
What is the CTS
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 ?
What is filters in web api?
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?
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.
What is a model in programming?
How we can add the CSS in ASP.Net MVC?