Hold FileUpload Dat
-
Hi Friends I need to remain the value of Fileupload control in post back event. Thanks in advance
r_palanivel83 10:01 4 Jan '06
-
Hi Friends I need to remain the value of Fileupload control in post back event. Thanks in advance
r_palanivel83 10:01 4 Jan '06
I think it is IMPOSSIBLE ...........................? // store in a variable;
-
Hi Friends I need to remain the value of Fileupload control in post back event. Thanks in advance
r_palanivel83 10:01 4 Jan '06
I am also trying this. it's not workimg.
Sathya
-
Hi Friends I need to remain the value of Fileupload control in post back event. Thanks in advance
r_palanivel83 10:01 4 Jan '06
did you try with AJAX. Put FileUpload Control into a update panel and make UpdateMode=Conditional and put other control in some other update panel . you can try it...
<form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <div> <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:FileUpload ID="FileUpload1" runat="server" /> </ContentTemplate> </asp:UpdatePanel> </div> <asp:UpdatePanel ID="UpdatePanel2" runat="server"> <ContentTemplate> <asp:Button ID="Button1" runat="server" Text="Button" /> </ContentTemplate> </asp:UpdatePanel> </form>
Best Regards ----------------- Abhijit Jana Check Out My Latest Article Java.NET : Integration of Java and .NET[^] "Success is Journey it's not a destination"
-
Hi Friends I need to remain the value of Fileupload control in post back event. Thanks in advance
r_palanivel83 10:01 4 Jan '06
Try using viewstate or session maybe? It worked for me.