I have a hierarchical radgrid with 2 detail tables in it. I want to use fileupload control in one of the detail table. For this I placed a fileUpload control in one detail table as follows
<telerik:GridTemplateColumn DataField="sURL" HeaderButtonType="TextButton"
HeaderText="sURL" SortExpression="sURL" UniqueName="sURL">
<EditItemTemplate>
<asp:FileUpload ID="sURLTextBox" runat="server"/>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="sURLLabel" runat="server" Text='<%# Eval("sURL") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
Now on clicking the Update command in edit view of the grid, I want to save the filename selected using the fileupload browser.
Appreciate all your help.
Thanks