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" />
</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