Hello,
I have a problem with the RadProgressArea not appearing on a production server. The same code works fine on my dev box, but when I put it onto the production environment, it does not appear. There are no errors, and the files upload fine, it just doesn't show the progress indicator.
Here is the ASPX page code. There is also a single RadUpload on the page.
Here is the web.config code:
I don't know where to start to look for the problem, the implementation of this seems quite straight forward, so I must be missing something really simple.
I am running on Windows 2008 with iis7 and ie7.
Also, if I open http://website/telerik.raduploadprogresshandler.ashx it returns the following, So it seems I have the handlers working (I think)
var rawProgressData = {InProgress:false,ProgressCounters:false};
Any help is much appreciated.
I have a problem with the RadProgressArea not appearing on a production server. The same code works fine on my dev box, but when I put it onto the production environment, it does not appear. There are no errors, and the files upload fine, it just doesn't show the progress indicator.
Here is the ASPX page code. There is also a single RadUpload on the page.
<telerik:RadProgressManager ID="RadProgressManager1" runat="server" /> |
<telerik:radprogressarea id="ProgressArea1" runat="server" EnableEmbeddedSkins="true" Skin="Vista"></telerik:radprogressarea> |
Here is the web.config code:
<httpHandlers> |
<add path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.RadUploadProgressHandler,Telerik.Web.UI, Version =2008.2.826.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4 " /> |
</httpHandlers> |
<httpModules> |
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule,Telerik.Web.UI, Version=2008.2.826.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
</httpModules> |
I don't know where to start to look for the problem, the implementation of this seems quite straight forward, so I must be missing something really simple.
I am running on Windows 2008 with iis7 and ie7.
Also, if I open http://website/telerik.raduploadprogresshandler.ashx it returns the following, So it seems I have the handlers working (I think)
var rawProgressData = {InProgress:false,ProgressCounters:false};
Any help is much appreciated.