Unable to upload file in the asp content page. Control shows uploading but never fires the event upload complete. I have tested on a separate page and it works perfect. Any suggestions
Comments: You should add AjaxFileUploadHandler to your Web.config file to make it work: ``` <configuration> <system.webServer> <handlers> <add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit" /> </handlers> </system.webServer> </configuration> ```
Comments: You should add AjaxFileUploadHandler to your Web.config file to make it work: ``` <configuration> <system.webServer> <handlers> <add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit" /> </handlers> </system.webServer> </configuration> ```