I see samples out there that show ASP MVC code, but none with native ASP.Net code. Can you direct me?
Hi smaple2dt,
You can check http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=web-upload for ASP.NET samples for WebUpload.
Regards,
Miro Hristov
These ASP.Net samples all appear to be MVC. I am looking for a native ASP sample.
My current attempt renders the control properly at design time, but only an empty DIV shows up in rendered code at run time for the Upload command and the page is blank.
What important thing am I missing?
Here is my current ASPX page Code:
<%
@ Register Assembly="Infragistics4.Web.jQuery.v11.1, Version=11.1.20111.1006, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"Namespace="Infragistics.Web.UI.EditorControls" TagPrefix="igjq" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
head> <title>Basic Functionality</title>
<link href="Styles/ig/jquery.ui.custom.css" rel="stylesheet" type="text/css" />
link href="Styles/Base/ig.ui.css" rel="stylesheet" type="text/css" />
script src="Scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
script src="Scripts/jquery-ui-1.8.13.custom.min.js" type="text/javascript"></script>
script src="Scripts/ig.ui.min.js" type="text/javascript"></script>
</
head>
body>
html>
Here are the pertinent parts of the Web.config:
appSettings><add key="fileUploadPath" value="~/Uploads" /><add key="maxFileSizeLimit" value="100000000" /><add key="bufferSize" value="16384" /><add key="allowedMIMEType" value="*" /></appSettings>
<httpHandlers><add path="*.html" verb="GET,POST" type="System.Web.StaticFileHandler" /><add verb="GET" type=" Infragistics.Web.UI.EditorControls.UploadStatusHandler" path="IGUploadStatusHandler.ashx" /></httpHandlers>
httpModules><add name="IGUploadModule" type="Infragistics.Web.UI.EditorControls.UploadModule" /></httpModules>
@ Register Assembly="Infragistics4.Web.jQuery.v11.1, Version=11.1.20111.1006, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"Namespace="Infragistics.Web.UI.EditorControls" TagPrefix="igjq"%>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
="http://www.w3.org/1999/xhtml">
>
Here is my web.config (pertinent parts):
configuration>
/>
httpHandlers
add path="*.html" verb="GET,POST" type="System.Web.StaticFileHandler"
add verb="GET" type=" Infragistics.Web.UI.EditorControls.UploadStatusHandler" path="IGUploadStatusHandler.ashx"
add name="IGUploadModule" type="Infragistics.Web.UI.EditorControls.UploadModule"
httpModules
Hello,
Have you been able to resolve this issue? Let us know if you still have any problems.
Thanks
Hi
Can anyone tell me, which files are needed to use WebUpload Control and where they can be found?
Whenever i run application it throws exception.
Microsoft JScript runtime error: 'jQuery' is undefined
Microsoft JScript runtime error: The Infragistics WebUpload requires jQuery to be loaded.
Kindly tell me how to use this control and which files need to be loaded and where i can find them?
Regards
Hi sheeeraz001,
Your problem is caused probably because you have not referenced jQuery javascript file. You can include it as using your local version or get it from jQuery site - http://jquery.com/
You can check any of our samples about WebUpload - there it is explained how to use the control and which exactly files (js and css) should be included so the control to work . Please check our samples:
http://samples.infragistics.com/jquery/file-upload/client-side-events
Regards, Miro Hristov
IG Guys
Are there any plans to make the WebUpload a little easier to implement for ASP.Net web forms? Requiring to manually add several JS and CSS files (which I had to manually copy from your samples site because I cant find a nice download including them in any of the documentation - what did I miss?) and put lots of settings into the web.config seems a little over the top when compared to both other ajax based file uploaders for asp.net and also when compared to the rest of your excellent controls.
Mike
Hi Mike,
WebUpload is ASP.net + JQuery control and that's why we allow users to set jquery js file and jquery-ui js file, CSS theme. This is specific according to our new JQuery controls.
About configuring settings of webupload in web.config you should do it manually because webupload could be run on different servers IIS6/7 and frameworks and this could not allow us to configure specific parts of web.config - for instance HTTPModule and HTTPHandler.