Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
0
Answer
GridView item template linkbutton catch on code behind
Cenk Isik
12y
1.5k
1
Reply
Hi all,
I have a gridview in my asp.net project and i used item template like;
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID = "lnkSil" runat="server" CommandName="bla"
CommandArgument='<%# ((GridViewRow) Container).RowIndex %>' Text= "Sil" ></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
And I want to catch this from code behind and i used below code ;
((Button)e.Row.Cells[1].Controls[0]).Attributes.Add("onclick", "return confirm('Bu kaydi silmek istediginizden emin misiniz?')");
but I'm failed how can i catch this controls on code behind like this
also i tried
((LinkButton)e.Row.Cells[1].Controls[0]).Attributes.Add("onclick", "return confirm('Bu kaydi silmek istediginizden emin misiniz?')");
Post
Reset
Cancel
Answers (
0
)
Next Recommended Forum
performance tune 2010 web app
Using Paging for huge amount of data (Need SQL and Function)