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
185
WebUpload problems
posted

I am using VS 2012 on windows 8 and am having problems getting the WebUpload control to work.

Adding the control to an ASP page does not appear to add the necessary script links, and when I add the links for JQuery from Google, the path to the Infragistics js files appears to be incorrect. I have fixed this, but now when I run the page in IE10, I get an error stating that '$' is undefined in one of the infragistics js files. In Chrome, the same page is run without errors, but no control is rendered. I have the following in the page:

<script type="text/javascript" src="/ig_ui/js/infragistics.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.js"></script>
and in the web.config
<httpModules>
      <add name="IGUploadModule" type="Infragistics.Web.UI.EditorControls.UploadModule" />
    </httpModules>
    <httpHandlers>
      <add path="IGUploadStatusHandler.ashx" verb="GET" type="Infragistics.Web.UI.EditorControls.UploadStatusHandler"
        validate="true" />
    </httpHandlers>
<appSettings>
    <add key="fileUploadPath" value="c:\temp\exodus\Uploads" />
    <add key="maxFileSizeLimit" value="4194304" />
    <add key="bufferSize" value="16384" />
    <add key="allowedMIMEType" value="*" />
  </appSettings>
Any help would be appreciated as I cannot get the control to work in any shape or form at the moment.

Parents
No Data
Reply
  • 17559
    posted

    Hello floodg,

    I was just wondering did you have a chance to try my suggestion. If you still need any assistance on the matter, please do not hesitate to ask.

Children