Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
WebUpload doesn't display filename after selecting from the browse dialog box
posted

Everything with the WebUpload control appears to work for me except when focus returns from the browse dialog to the Web Form.  The filename isn't populated in the control.  Please help.

aspx code is below:

<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.Master" CodeBehind="InfragisticsWebUpload.aspx.vb" Inherits="FileTransferSystem.InfragisticsWebUpload" %>

<%

 

@ Register assembly="Infragistics4.Web.jQuery.v11.1, Version=11.1.20111.2036, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.EditorControls" tagprefix="ig" %>

<

 

 

asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">

<

 

 

script type="text/javascript" id="igClientScript1">

<!--

function

 

 

 

onErrorHandler(e, args)

{

$(

 

"#error-message").html(args.errorMessage).stop(true, true).fadeIn(500).delay(3000).fadeOut(500);

}

</

 

 

 

script

>

</

 

 

 

asp:Content

>

<

 

 

 

asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat

="server">

<

 

 

 

link type="text/css" href="/Styles/jquery.ui.custom.css" rel="stylesheet"

/>

<

 

 

 

link type="text/css" href="/Styles/ig.ui.min.css" rel="stylesheet"

/>

<

 

 

 

script type="text/javascript" src="/Scripts/jquery-1.4.1.min.js"></script

>

<

 

 

 

script type="text/javascript" src="/Scripts/jquery-ui.min.js"></script

>

<

 

 

 

script type="text/javascript" src="/Scripts/ig.ui.min.js"></script

>

 

 

 

<h2

>

Test Upload

 

</h2

>

 

 

 

<p

>

This system allows users to upload Documents, Images, Audio and Video Files

 

 

</p

>

 

 

 

<ig:WebUpload ID="WebUpload1" runat="server"

 

 

 

LabelUploadButton="Select File(s) to Upload" ShowFileExtensionIcon="true"

 

 

 

Mode

="Multiple">

 

 

 

<ClientEvents OnError="onErrorHandler"

/>

 

 

 

</ig:WebUpload

>

</

 

 

 

asp:Content>

 

Parents
Reply Children