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 connection pooling and how to enable and disable connection pooling?
Why and where this web.config file is used?
How to rename a table using sql queries?
What are the page life cycle events?
how to include timer or counting time to display next page in asp.net
Where sessions are stored?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
What is x xss protection?
What is fulltrust?
Explain the updatepanel?
How many types of validators are there in asp net?
What is a web farm?
How will create assesblies at run time?
What is HTTPModule and HTTPcontext? What is the use of each?
What is a proxy in web service?