When trying to add a flash movie
you receive this error:
Error executing child request for BannerAdvanced_AddNew.aspx.
Description:
An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more
information about the error and where it originated in the code.
Exception Details:
System.Web.HttpException: Error executing child request for
BannerAdvanced_AddNew.aspx.
This is caused by a custom HTTP
Handler being added by another application that is most likely
being run in the root of your web site. To resolve the
problem, modify the web.config file located in the /banmanpro/admin/
folder. After <system.web> add:
<httpHandlers>
<clear />
<add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory"
/>
</httpHandlers> |