Welcome Guest Search | Active Topics | Sign In | Register

AJAX Uploader Suddenly Stopped Working Options
Dekaiden
Posted: Monday, November 3, 2008 7:09:36 PM
Rank: Member
Groups: Member

Joined: 10/28/2008
Posts: 12
Good Evening,

I've been using your AJAX Uploader for about a week now; really getting the feel for it and making sure it is the best pick for what I need. I've decided it's the one I'm looking for as it's the best all around uploader I've found online. For the moment I still have the "trial" version in my solution. I've been working on this page for a few hours now, constantly checking to make sure everything is okay and working. Now suddenly, the uploader will not upload anything. I'm running two on one page, which has been successful until about thirty minutes ago. On one of them, the progress bar will initiate, but it will not do anything. The bar will not fill; there is no xxx bytes of xxx loaded message; I get nothing. The upload button becomes disabled and it just sits there. No error; not anything to go off of.

I guess the main question I'm trying to ask is: with the trial version, will it stop functioning after x amount of time? Or did I somehow screw up the code?

Here's the most recent clip of code for the uploader:

Code: Visual Basic.NET
<eo:AJAXUploader ID="picPreUploader" runat="server" ClientSideOnDone="clipDone" ClientSideOnStart="clipStart" MaxFileCount="1" ProgressBarSkin="Windows_Vista" TempFileLocation="" Width="480px">
   <BrowseButtonStyle CssClass="button" />
   <DeleteButtonStyle CssClass="button" />
   <UploadButtonStyle CssClass="button" />
   <LayoutTemplate>
      <table border="0" cellpadding="2" cellspacing="0" width="480px">
         <tr>
            <td align="right">
               <asp:PlaceHolder ID="InputPlaceHolder" runat="server">Input Box Place Holder </asp:PlaceHolder>
               <br />
               <asp:Button ID="UploadButton" runat="server" Text="Upload" CssClass="button" />
               &nbsp;
            </td>
         </tr>
         <tr>
            <td align="right">
               <div id="pic2" style="display: none;">
                  <eo:ProgressBar ID="ProgressBar" runat="server" ControlSkinID="Windows_Vista" />
                  <br />
                  <asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">Progress Text Place Holder</asp:PlaceHolder>
                  <br />
                  <asp:Button ID="CancelButton" runat="server" Text="Cancel" />
               </div>
            </td>
         </tr>
         <tr>
            <td>
               <asp:PlaceHolder ID="PostedFilesPlaceHolder" runat="server">Posted Files Place Holder</asp:PlaceHolder>
            </td>
         </tr>
         <tr>
            <td align="right">
               <asp:Button ID="DeleteButton" runat="server" Text="Delete Selected Files" />
            </td>
         </tr>
         </tr>
      </table>
   </LayoutTemplate>
   <TextBoxStyle CssClass="textbox" />
   <CancelButtonStyle CssClass="button" />
</eo:AJAXUploader>


Any advisement would be greatly appreciated.

Respectfully,
Dekaiden
eo_support
Posted: Monday, November 3, 2008 7:17:44 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

This usually has to do with your ClientSideOnStart handler (in your case clipStart). When something went wrong inside that function, the upload would fail.

Thanks
Dekaiden
Posted: Monday, November 3, 2008 7:33:05 PM
Rank: Member
Groups: Member

Joined: 10/28/2008
Posts: 12
Good Evening,

Thank you SO much. That would have been the last think I thought of. You saved me many hours of debugging and a major headache. Here's to you Applause Cheers

Respectfully,
Dekaiden


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.