Hello there,
I can not seem to figure this one out. For some reason when my website first loads and I open a modal popup (asp.net AJAX), the uploader from within that Modal which is contained within an update panel will popup a JS "EMPTY" alert. If you close the modal, browse around and go back in, the alert goes away for the rest of the time within the site. Is this because its in an updatepanel? What is required for the uploader to work from the start? The uploader is defined below.
<CuteWebUI:Uploader ID="upAddEditActivity_Upload"
runat="server"
InputboxCSSText="text_box"
InsertText="Upload (Max 50MB)"
ProgressBarHeight="15"
ProgressInfoStyle="padding-left:3px;font:normal 9px;"
ProgressPanelWidth="150"
ProgressTextTemplate="%P% of %SIZE% complete"
ShowProgressBar="False"
TempDirectory="~/uploads/temp"
UploadType="IFrame">
<ValidateOption MaxSizeKB="51200" />
<ProgressLabelStyle CssClass="button" />
<InsertButtonStyle CssClass="button" Font-Bold="True" />
<CancelButtonStyle CssClass="button" Font-Bold="True" />
</CuteWebUI:Uploader>
Thanks!
Eric