|
-
Mar 5th, 2009, 09:55 AM
#4
Re: ASP Net - GridView1_RowCommand Event is not fired
 Originally Posted by himanshu2s
Hi,
I am using C# for my coding and I have create a web application in the given hierarchy:
1. There is a Master Page: UserMaster.Master
2. ContentPlaceHolder: UserContentPlaceHolder
3. I am using this master page in my web form.
4. I am using a gridview in this web form. Following is the gridview:
<asp:GridView ID="grdRequestLicence"runat="server"AutoGenerateCo lumns="False" OnRowCommand="grdRequestLicence_RowCommand" >
<Columns>
<asp:BoundField DataField="STATUS_ID" HeaderText="Status ID"/>
<asp:TemplateField HeaderText="Action">
<ItemTemplate>
<asp:Button ID="btnGet_Key" runat="server" Text="Get Key"/>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
5.I am using grdRequestLicence_RowCommand for row commands.
protected void grdRequestLicence_RowCommand(object sender, GridViewRowEventArgs e)
The grid is easily populated but when I am trying to click on button in grid, no event is fired.
Somebody please help me find out the trap...
When dealing with .NET data objects, LinkButtons are usually the way to go, in my opinion.. just easier to deal with. Regardless, the only way you're gonna get the RowCommand event to fire is by specifying a CommandName and CommandArgument on the object calling the event, in your case, btnGet_Key.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|