Re: How to change 2.0 web app. to run under 3.5 fr amework?
|
Kelpein Petcull |
|
6/3/2008 11:10:41 PM |
.NET 3.5 still shows up as ASP.NET 2.0 for the versioning in IIS; not sure if this will change when it is released... Post Comments |
|
Re: How to change 2.0 web app. to run under 3.5 fr amework?
|
Tangaama Coccikeiri |
|
6/3/2008 11:11:17 PM |
The dropdown list for multi-target project presents the different versions of .Net Framework, n ot ASP.Net. So far, the lateset ASP.Net version is still 2.0. The new features included i n .Net Framework 3.5, like AJAX and DLINQ will be supported in ASP.Net websites if you ha ve installed .Net Framework 3.5 on your web server. Post Comments |
|
This contradicts. First you say the list represents the different versions of the the .NET Framework, not ASP.NET. Then you say the latest version of ASP.NET is still 2.0 and that the the features of the .NET 3.5 framework will be available. Yet if the list does represent the versions of .NET and you did install 3.5 wouldn't it have to show up in the list, unless the list respresents the versions of ASP.NET and not the versions of the .NET Framework.
The only problem is that when you do install the .NET Framework 3.5 you have to disable a lot of xmlns: entries in the machine web.config just to get s ites working again. And then when you try to upload a site which was created using Visual Studi o 2008 targetting .NET 3.5 you simply get Post Comments |
|
Re: How to change 2.0 web app. to run under 3.5 fr amework?
|
Regwinder Singh |
|
6/3/2008 11:14:03 PM |
What is the answer?
On WinXP with IIS installed, I get "The type or namespace name 'Linq' does not exist..." and versions shows "Microsoft .NET Framework Version:2.0.50727.1378"
This occurs both under IIS, and under ASP.NET Development Server (right-click View in Browser from Visual Studio 2008 Beta 2).
On WinXP without IIS installed, it works fine! (right-click View in Browser from Visual Studio 2008 Beta 2). Go figure.
Of course that doesn' t help me move it into a production environment. Post Comments |
|
Re: How to change 2.0 web app. to run under 3.5 fr amework?
|
Regwinder Singh |
|
6/3/2008 11:15:17 PM |
Problem solved.
Just manually add a reference to System.Xml.Linq (which will be in t he list if you have Framework 3.5 installed), and it works fine under ASPNET 2.0. Post Comments |
|