@@ -47,7 +47,7 @@ Before you can use any of the **RadUpload** progress-monitoring controls, you mu
47471 . In the ** ` <httpModules> ` ** element add the following tag:
4848
4949 ````XML
50- <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI " />
50+ <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
5151 ````
5252
5353 This registers the **RadUploadHttpModule** type, which enables **RadProgressManager** to manage the upload progress.
@@ -60,7 +60,7 @@ Before you can use any of the **RadUpload** progress-monitoring controls, you mu
60601 . In the ** ` <httpHandlers> ` ** element, add the following tag:
6161
6262 ````XML
63- <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI "
63+ <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler"
6464 validate="false" />
6565 ````
6666
@@ -74,11 +74,11 @@ Before you can use any of the **RadUpload** progress-monitoring controls, you mu
7474 <system.webserver>
7575 <modules>
7676 . . .
77- <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI " preCondition="integratedMode"/>
77+ <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode"/>
7878 </modules>
7979 <handlers>
8080 . . .
81- <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI " preCondition="integratedMode"/>
81+ <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler" preCondition="integratedMode"/>
8282 </handlers>
8383 </system.webserver>
8484 ````
@@ -95,11 +95,11 @@ Before you can use any of the **RadUpload** progress-monitoring controls, you mu
9595 ...
9696 <system .web>
9797 <httpHandlers >
98- <add verb =" *" path =" Telerik.RadUploadProgressHandler.ashx" type =" Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI " />
98+ <add verb =" *" path =" Telerik.RadUploadProgressHandler.ashx" type =" Telerik.Web.UI.RadUploadProgressHandler" />
9999 ...
100100 </httpHandlers >
101101 <httpModules >
102- <add name =" RadUploadModule" type =" Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI " />
102+ <add name =" RadUploadModule" type =" Telerik.Web.UI.RadUploadHttpModule" />
103103 ...
104104 </httpModules >
105105 ...
0 commit comments