I have the following structure on my aspx page:
My question is this:
How can I access the OnRowDataBound and the OnRowCreated event of the inner Gridview?
Thanks
rsshetty.
It's always in the details.
Code:
<asp:Repeater id="myRepeater" runat="server" OnItemDataBound="myRepeater_ItemDataBound">
<ItemTemplate>
<asp:GridView ID="gvStudentList" runat="server" AutoGenerateColumns="false" >
...
</asp:GridView>
</ItemTemplate>
</asp:Repeater>
My question is this:
How can I access the OnRowDataBound and the OnRowCreated event of the inner Gridview?
Thanks
rsshetty.
It's always in the details.