Here is the column in my ASP.Net Gridview that is working:
How do I implement this in a RadGrid and have it call a method in the code behind to pass the value to the other sqldatasource?
Thanks
<
asp:TemplateField>
<ItemTemplate>
<asp:LinkButton runat="server" ID="lbtn1" CommandName="cmd1" CommandArgument='<%#Eval("id")%>' Text="View Sections" />
</ItemTemplate>
</asp:TemplateField>
The event is called and processed (the method called is 'protected void gv_RowCommand(Object sender, GridViewCommandEventArgs e)' and it assigns the ID to sqldatasource on the page for another use).
How do I implement this in a RadGrid and have it call a method in the code behind to pass the value to the other sqldatasource?
Thanks