Hi there.. :)
I've developed this aspx web-solution (with no special 2.0 features really, so i think it will run perfectly on v 1.1 too)..
On the server it's installed .NET framework 1.1 and that has to be that way cause we've ordered "Proposion N2N" software which (i think..) only runs on .NET Framework 1.x (yet..)..
So.. basically.. how do i modify this web.config file to be accepted on the 1.1 framework ?
I've tried to modify this line :
<configuration xmlns="
http://schemas.microsoft.com/.NetConfiguration/v2.0">
to this :
<configuration xmlns="
http://schemas.microsoft.com/.NetConfiguration/v1.1">
but that didn't do much good :)
Hope you can help me as fast as you can with this, since it's quite urgent atm.
---------------WEB.CONFIG-
----------
---------
<?xml version="1.0"?>
<!-- Note: As an alternative to hand editing this file you can use the web admin tool to
configure settings for your application. Use the Website->Asp.Net Configuration option
in Visual Studio.
A full list of settings and comments can be found in machine.config.comments usually
located in \Windows\Microsft.Net\Fram
eworks\v2.
x\Config -->
<configuration xmlns="
http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings/>
<connectionStrings/>
<system.web>
<identity impersonate="true"/>
<authentication mode="Windows">
</authentication>
<!--
Set compilation debug="true" to insert debugging symbols into the compiled page.
Because this affects performance, set this value to true only during development.
-->
<compilation debug="true">
<assemblies>
<add assembly="ADODB, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D
50A3A"/></
assemblies
></compila
tion>
<customErrors mode="RemoteOnly" defaultRedirect="GenericEr
rorPage.ht
m">
<!--
<error statusCode="403" redirect="NoAccess.htm"/>
<error statusCode="404" redirect="FileNotFound.htm
"/>
-->
</customErrors>
</system.web>
</configuration>
--------------END WEB.CONFIG---------------