Hi,
I have a simple page with nothing but the upload control on it. When I upload 5 MB file, the progress bar flashes as it updates.
Here's the code:
<%@ Page Title="About Us" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="About.aspx.cs" Inherits="About" %>
<%@ Register Assembly="CuteWebUI.AjaxUploader" Namespace="CuteWebUI" TagPrefix="cc1" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<p>
<cc1:Uploader ID="fileUploader" runat="server"
ValidateOption-EnableMimetypeChecking="False"
MultipleFilesUpload="True"
TempDirectory="~/UploaderTemp"
InsertButtonID="bnNew" >
<ValidateOption EnableMimetypeChecking="False" AllowedFileMimeTypes=""></ValidateOption>
</cc1:Uploader>
</p>
</asp:Content>
Your website demo doesn't flash (in the same browser) which tells me that I'm doing something wrong.
What am I missing?
Thank you,
Gene