You have two buttons in web form and i clicked on one of
the button, so how do i find which button i've clicked on
the form in my page load?
Answers were Sorted based on User's Feedback
Answer / vijaykumar
Just write code on page load
Response.Write(Request.Form[1].ToString());
u got button name which one u clicked.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / thiyagu
In page Load
Page.Request.Form.Keys
will get which button is clicked
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
you can get the button name with request.forms collection
in the page load.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / gaurav joshi,mohit jethva
i have two button btnadd and btnupdate
If (Array.IndexOf(Request.Form.AllKeys, btnadd.ClientID))
{
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rathore kuldeep
Request.Form("bsubmit")="name of button"
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / richard des jardins
I'm not real sure where you are trying to get this
information. Lets say you have two buttons whose
OnClick="MyButtonClick". The void MyButtonClick(Object
sender,EventArgs e) exposes the Button Object with the
sender reference. Cast the sender to a button and do what
ever you want with it.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nithya_raghu
the above code was returning the hidden field value. which
will be non readble format.please make sure before entering
the answer will it work or not.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / bose
due to the question i have one doubt?
The click event is done while i creating the web
application time or after the deployment?
Is This Answer Correct ? | 0 Yes | 2 No |
is it possible to develop gaming application using .net technology?
What is the extension of master page in asp.net?
What are the versions of garbage collection?
What is the function of the CustomValidator? a) It allows for custom C# client-side code to validate entries in a control. b) It allows for a custom mixture of validator controls to use one central control for the display of messages. c) It uses scripted client-side code to validate the entry in a control. d) It uses server-side code to validate the entry in a control.
4 Answers ABC, Syntax Softtech, TCS,
Explain the use of fragment caching.
What is the usie of activex control in .net?
Difference between DataGid and Girdview? Difference b/w .Net 2.0, 3.0 and 3.5 ? Diff b/w dispose & Finialize Methods?
0 Answers Accenture, Value Labs,
Difference between windows application and web application? Which is the best for updation purpose?
How many Language support in ASP.NET?
What is HTTPContext and HTTPModule. What is the use of them?
Where can we set the specific variables for a application and Session objects ?
# What is the transport protocol you use to call a Web service?