|
This is a minimal example of the web.config file required for ABCUpload
.NET. For further information see the web.config
and ABCUpload config
sections of this document.
<?xml version="1.0" encoding="utf-8"
?>
<configuration>
<system.web>
<!-- HTTP MODULES
The ABCUpload Progress Module is core to
many features of ABCUpload.
It intercepts requests and processes them
appropriately. The Progress Module supplies
the functionality for the Pure HTML Progress
Bar, GigUpload and Corruption Autofix.
If the progress module is not installed
these features will not be available.
-->
<httpModules>
<add name="Progress"
type="WebSupergoo.ABCUpload5.ProgressModule, ABCUpload5, Version=5.3.0.0,
Culture=neutral, PublicKeyToken=1f89539196ce5fbf"/>
</httpModules>
<!-- HTTP RUNTIME
ASP.NET uses a maximum upload size set to
a default designed to prevent Denial of
Service (DOS) attacks. Here we increase
the maximum request size to 1 GB.
-->
<httpRuntime
maxRequestLength="1048576"
executionTimeout="600"
/>
<!-- COMPILATION
Because we will be creating objects based
on classes within the ABCUpload .NET assembly
we need to reference the assembly within
our
config file. This is not necessary if the
assembly is installed in the bin directory
rather than the Global Assembly Cache (GAC).
-->
<compilation defaultLanguage="c#">
<assemblies>
<add assembly="ABCUpload5,
Version=5.3.0.0, Culture=neutral, PublicKeyToken=1f89539196ce5fbf"
/>
</assemblies>
</compilation>
</system.web>
</configuration>
<?xml version="1.0" encoding="utf-8"
?>
<configuration>
<system.web>
<!-- HTTP MODULES
The ABCUpload Progress Module is core to
many features of ABCUpload.
It intercepts requests and processes them
appropriately. The Progress Module supplies
the functionality for the Pure HTML Progress
Bar, GigUpload and Corruption Autofix.
If the progress module is not installed
these features will not be available.
-->
<httpModules>
<add name="Progress"
type="WebSupergoo.ABCUpload5.ProgressModule, ABCUpload5, Version=5.3.0.0,
Culture=neutral, PublicKeyToken=1f89539196ce5fbf"/>
</httpModules>
<!-- HTTP RUNTIME
ASP.NET uses a maximum upload size set to
a default designed to prevent Denial of
Service (DOS) attacks. Here we increase
the maximum request size to 1 GB.
-->
<httpRuntime
maxRequestLength="1048576"
executionTimeout="600"
/>
<!-- COMPILATION
Because we will be creating objects based
on classes within the ABCUpload .NET assembly
we need to reference the assembly within
our
config file. This is not necessary if the
assembly is installed in the bin directory
rather than the Global Assembly Cache (GAC).
-->
<compilation defaultLanguage="vb">
<assemblies>
<add assembly="ABCUpload5,
Version=5.3.0.0, Culture=neutral, PublicKeyToken=1f89539196ce5fbf"
/>
</assemblies>
</compilation>
</system.web>
</configuration>
|
|
|