TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bhupendra Singh
NA
225
148.4k
How to find Grid view row index value using command argument on button click
Oct 4 2012 11:39 AM
<asp:TemplateField HeaderText="DELETE" HeaderStyle-CssClass="sfDelete">
<ItemTemplate>
<asp:ImageButton ID="imbDelete" runat="server" CausesValidation="False" CommandArgument="<%# ((GridViewRow) Container).RowIndex %>"
CommandName="Delete" ToolTip="Delete the enquiry" />
</ItemTemplate>
</asp:TemplateField>
Fire Event of grid view row Command..
-------------------------------------------------------------------------------------------------------
protected void gdvRecord_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "EDIT")
{
int RowNum = int.Parse(e.CommandArgument.ToString());
}
}
Reply
Answers (
1
)
Process Class in C#
How to convert any type of files to be viewed as HTML in C#.net