How can i access File_Name1s value in repeater1_ItemDataBound.
<asp:Repeater ID="repeater1" runat="server">
<input type="hidden" id="filenameid"
value="<%#DataBinder.Eval(Container,"DataItem.File_Name1") %>" />
</asp:Repeater>
I tried a lot.
Make sure that your input is a server control
<asp:HiddenField runat="server" ID="filenameid"/>and then in yourrepeater1_ItemDataBoundevent use:You will have access to its Value.
Hope it helps.