Under the <configuration> ... <system.web> node in the web.config, update as instructed below.
(Optional). If you chose to implement the (recommended) HttpModule, you must add
the following to the web.config file under the <configuration> and <system.web> nodes:
<httpModules> <add name="FileUpModule" type="SoftArtisans.Net.FileUpModule,
FileUpModule, Version=$fu.version.module.build$,
Culture=neutral,
PublicKeyToken=f593502af6ee46ae"/> </httpModules> <httpHandlers> <add verb="*" path="*.uplx"
type="System.Web.UI.PageHandlerFactory"/> </httpHandlers>
If you are running FileUp on version 2.x of the .NET Framework, your web.config
changes to support the module will also include additions to the <compilation>
node:
<compilation> <buildProviders> <add extension=".uplx"
type="System.Web.Compilation.PageBuildProvider"/> </buildProviders> </compilation> <httpModules> <add name="FileUpModule" type="SoftArtisans.Net.FileUpModule,
FileUpModule, Version=$fu.version.module.build$,
Culture=neutral,
PublicKeyToken=f593502af6ee46ae"/> </httpModules> <httpHandlers> <add verb="*" path="*.uplx"
type="System.Web.UI.PageHandlerFactory"/> </httpHandlers>
|