|
-
Mar 5th, 2009, 04:59 AM
#1
Thread Starter
New Member
ASP Net - GridView1_RowCommand Event is not fired
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...
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
|