|
Rank: Newbie Groups: Member
Joined: 7/7/2008 Posts: 2
|
I have 5 upload controls and on the callback, only the file name is available. Of course I need the complete path to the file. Basically trying to have 5 browse controls and have the user just hit upload once to initiate upload for all files. Any ideas? Thanks
Code: HTML/ASPX
<p>File Upload</p>
<p>File 1: <asp:FileUpload ID="fUpload1" runat="server" /></p>
<p>File 2: <asp:FileUpload ID="fUpload2" runat="server" /></p>
<p>File 3: <asp:FileUpload ID="fUpload3" runat="server" /></p>
<p>File 4: <asp:FileUpload ID="fUpload4" runat="server" /></p>
<p>File 5: <asp:FileUpload ID="fUpload5" runat="server" /></p>
</div>
<p>
Progress Indicator
<eo:ProgressBar ID="ProgressBar" Width="500px" OnRunTask="ProgressBar_RunTask" ShowPercentage="True" runat="server" ControlSkinID="Windows_XP" StartTaskButton="btnAdd"></eo:ProgressBar>
</p>
<asp:Button ID="btnAdd" runat="server" OnClick="btnAddClicked" Text="Add" />
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi,
I don't think you can use a regular file upload inside a Callback. You can try to use our AJAXUploader and set its Rows property to 5.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 7/7/2008 Posts: 2
|
seems its a Microsoft 'feature'. Complete path is only avail in IE.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
pfitzpatrick wrote:seems its a Microsoft 'feature'. Complete path is only avail in IE. That is correct. Sorry that we overlooked this part of your question. Only the file upload inside callback caught our eyes. We sincerely apologize for that. Other browsers consider providing full file path reveals client side information to the server without user's consent. Thus they explicitly strips off the path information before files are submitted. The same applies to our AJAXUploader as well.
|
|