<asp:GridView ID="gridPlace" runat="server" AutoGenerateColumns="False" Width="800px"
BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px"
CellPadding="5" OnRowDataBound="gridPlace_RowDataBound" OnSelectedIndexChanged="gridPlace_SelectedIndexChanged">
<Columns>
<asp:BoundField HeaderText="DetailID" DataField="PID" />
<asp:BoundField HeaderText="Name" DataField="Name" ControlStyle-Width="200px" />
<asp:BoundField HeaderText="Description" DataField="Description" />
<asp:TemplateField>
<ItemTemplate>
<asp:ImageButton ID="btnEdit" runat="server" ImageUrl="~/Images/Edit.png" ToolTip="Click To Edit this Record" />
</ItemTemplate>
<ItemStyle Width="40px" HorizontalAlign="Center" />
</asp:TemplateField>
</Columns>
<EmptyDataTemplate>
<h2 class="CustomErrorMsg">
No Record Found</h3>
</EmptyDataTemplate>
</asp:GridView>
これがgridviewのhtmlマークアップです。RowDataboundイベントが完全に発生しています。親切にヘルプ