Hi,
I read all the forum thread on this subject. I try with all the documentation Telerik offer on their website.
The RadProcessArea never appear. I put a large file, I configure my web.config file.
Do the machine.config can affect the good work of the control?
Here my web.config configuration
And my code of my aspx page
With this code, I can upload file but without the progress bar. While the upload is processing, my navigator is froze.
Thanks
I read all the forum thread on this subject. I try with all the documentation Telerik offer on their website.
The RadProcessArea never appear. I put a large file, I configure my web.config file.
Do the machine.config can affect the good work of the control?
Here my web.config configuration
| <httpRuntime maxRequestLength="102400" executionTimeout= "3600" /> | |
| <system.web> | |
| ... | |
| <httpHandlers> | |
| <remove verb="*" path="*.asmx" /> | |
| <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> | |
| <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" verb="*" validate="false" /> | |
| <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> | |
| </httpHandlers> | |
| <httpModules> | |
| <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" /> | |
| </httpModules> | |
| ... | |
| </system.web> | |
| <system.webServer> | |
| <validation validateIntegratedModeConfiguration="false" /> | |
| <modules> | |
| <remove name="ScriptModule" /> | |
| <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="RadUploadModule" preCondition="integratedMode" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" /> | |
| </modules> | |
| <handlers> | |
| <remove name="WebServiceHandlerFactory-Integrated" /> | |
| <remove name="ScriptHandlerFactory" /> | |
| <remove name="ScriptHandlerFactoryAppServices" /> | |
| <remove name="ScriptResource" /> | |
| <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="Telerik_RadUploadProgressHandler_ashx" verb="*" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" /> | |
| <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /> | |
| </handlers> | |
| </system.webServer> |
And my code of my aspx page
| <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> | ||
| </telerik:RadScriptManager> | ||
| <telerik:RadProgressManager ID="RadProgressManager1" Runat="server" /> | ||
| <telerik:RadUpload ID="RadUpload1" Runat="server" ControlObjectsVisibility="All" | ||
| InitialFileInputsCount="2" MaxFileInputsCount="5" MaxFileSize="1000000" | ||
| ReadOnlyFileInputs="True" Skin="Vista" TargetFolder="~/temp"> | ||
| </telerik:RadUpload> | ||
| <telerik:RadProgressArea ID="RadProgressArea1" Runat="server" | ||
| DisplayCancelButton="True" Skin="Vista"> | ||
| <Localization Uploaded="Uploaded"></Localization> | ||
| </telerik:RadProgressArea> | ||
| <hr /> <br /> | ||
| <asp:Button ID="Button1" runat="server" Text="submit" /> |
With this code, I can upload file but without the progress bar. While the upload is processing, my navigator is froze.
Thanks