Hi,
If i set Enabled=false in ASPX Markup the Uploader doesn't disable the Choose Button.
When i click on the button, the file selection dialog will be opened.
Can you fix this issue?
Here my example code:
Code: HTML/ASPX
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Blank.aspx.cs" Inherits="JNetwork.WebAppBase.Blank" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<eo:AJAXUploader ID="auTest" runat="server" Enabled="false" />
</div>
</form>
</body>
</html>
Code: C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace JNetwork.WebAppBase
{
public partial class Blank : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.auTest.TempFileLocation = Server.MapPath("~/");
}
}
}
Teste in IE, FF and Chrome