English 中文(简体)
What are the effects of using VS2005 to migrate from .NET 1.1
原标题:

I m working on some legacy code for a client, involving Microsoft Content Management System (MCMS).

Currently, everything is local, the code, MCMS, SQLServer, and IIS (5.x).

I copied the project folder, and then opened the new copied solution in VS2005, and let it do it s conversion thing.

But now nothing works. I ve nnotice there have been some changes to IIS profile. What are the extent of these changes...??

Also, my VS2003 fails to recognize the Web Project??

Anyone have any idea what s going on?

cheers!

问题回答

Not really sure the extent to which MCMS affects anything (since I have not used that tool) but as to the question on the VS2003 not recognizing the web project, the issue is that when Visual Studio 2005 does it s upgrade, it changes the format of the VS2003 project files to VS2005 format. This means that once you have upgraded a project to VS2005 you can t go back and open it using VS 2003.

As far as changes to the web project go - VS 2005 by default completely changes the layout and mode of your web projects. If you want to retain the familiar (and IMO better) web application layout from VS 2003 you need to use the web application project option which is available as a download - details are here

Hope this helps.





相关问题
Question on .NET 1.1 C# Events Tutorial From MSDN

I am looking at this event example http://msdn.microsoft.com/en-us/library/aa645739%28VS.71%29.aspx This all makes sense to me except that the following line public event ChangedEventHandler Changed;...

How to remove closing tag of an XmlDocument in C#, .NET 1.1?

How can I remove the closing tag of element c in a XML document? The converted XML will go through a schema validation and it is rejected because it has a whitespace within. I m using C#, .NET 1.1 (...

"Best" way to communicate between .NET 1.1 and .NET 3.5

By best I mean: Cheapest development cost (1.1 project is unlikely to live > 6 months) Easiest migration to WCF or similar By communicate between I mean: Remote communication between computers Most ...

Calling .NET 2.0 assemblies in .NET 1.1

Recently I developed a internal framework in .NET 2.0 version, which is basically classes and helpers. The problem is I have some .NET 1.1 sites and applications and would like to use my framework ...

VB.NET 2003 copy log4net.config to bin folder

I m using VS.NET 2003 and VB.NET. I have placed my log4net.config file in the same folder as the source code and I want to automatically copy the log4net.config file to the bin folder just as the app....

Assignment "=" operator in VB.NET 1.1

I m "cloning" objects in my code. For instance: objClone = objOriginal My question is: Does the assignment operator in VB.NET 1.1 do a member-by-member copy of the objOriginal to objClone or does ...

Managing multiple .Net-Frameworks on a webserver

So I m in charge to deploy my project on the productive server where some other ASP.NET-Websites are also set up. The problem now is that I wrote my whole project under .NET 3.5 but on the webserver ...

热门标签