2.4. Configuring Telerik RadUpload

Telerik RadUpload enables your applications to upload files. Configuration is very simple, because all you need to do is register the module in the web.config file the same way we did with Telerik RadCompression.

There are actually three options to enable RadUpload in your application. First, you can manually enable it by adding the module to the httpModules section in the web.config file as follows:

<system.web> <httpModules> <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" /> </httpModules> <HttpHandlers> <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" validate="false" verb="*" /> </HttpHandlers> </system.web> ...

Get Pro Telerik ASP.NET and Silverlight Controls: Master Telerik Controls for Advanced ASP.NET and Silverlight Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.