RadUpload for ASP.NET

Using Forms Authentication Send comments on this topic.
Uploading Files > Using Forms Authentication

Glossary Item Box

This topic is applicable only for .NET 2.0 applications.

RadProgressManager searches for RadUploadProgressHandler in the root directory of the application:

http://YourServerName/ApplicationName/Telerik.RadUploadProgressHandler.aspx

In order to ensure the proper operation of RadUploadProgressHandler you need to allow access to unauthenticated users to the path above. Put the following text in your application web.config:

<location path="Telerik.RadUploadProgressHandler.aspx">
    <system.web>
        <authorization>
           <allow users="*"/>
        </authorization>
    </system.web>
</location>

You can find more information about the location section in this MSDN article.

The configuration file sections and attributes are case sensitive. This means that the above sections and attributes will be incorrect if they are written using a case other than shown the example.