Asp.Net Source :- In my project i have gridview control -
item template. Its have asp:button control. my requirement
is while click this button i need to display some alert
message.
Could you please help me which gridview event i need to
write source code?
Please give me a quick response.
Thanks
Answer Posted / mintu
add commandname="Updateme" for your button and in rowcommand event of datagrid
if (e.CommandName == "Updateme")
{
//ur code
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is jade template engine?
What is session in web technology?
What is a global postback url?
How can we pass info between 2 asp.net pages?
Can you change a Master Page dynamically at runtime?
Define satellite assemblies.
What is asp.net futures?
Is asp.net still used?
What is the file extension of web service?
What is viewstategenerator?
What is http protocol and how it works?
Explain what is clr?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
What is server infrastructure?
Explain cookies with example.