Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Net 1.1 (VS2003) web app.. run on ASP.Net 2.0 ?

Status
Not open for further replies.

AustinOne

Programmer
Mar 22, 2002
59
0
0
US
Is it possible for a web app developed/maintained in Visual Studio 2003 (.Net 1.1)... to run on ASP.Net 2.0 ?
(Looking for a way to run on ASP.Net 2.0 but NOT have to convert the app to Visual Studio 2005...)

Thanks
 
Do a google search for .net configuration files. Basically you need a configuration file which targets 1.1. It will look something like this - this one retargets 2.0 on a 4.5 system.
Code:
<?xml version="1.0"?> 
    <configuration> 
    <startup> 
        <supportedRuntime version="v2.0.50727"/> 
    </startup> 
</configuration>
 
OK, follow-up question... Just to be clear, I realized that this config option was available for non-web programs and that this could be inserted into the "<app>.config" file for the app. But, I wasn't sure if this also applied to an ASP.NET app. So... what you are saying is to put this into the web.config file for this app ???


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top