将包含经典asp页面的asp.net应用程序以及从1.1框架的aspx页面迁移到4.0

时间:2022-02-12 02:03:06

I have an application in dot.net framework 1.1 with some classic asp pages as well as .aspx pages.

我在dot.net framework 1.1中有一个应用程序,它有一些经典的asp页面和.aspx页面。

I have to migrate this application to framework 4.0 keeping the asp pages as it is.Will this cause any problem during migration of the application.If so, what kind of issues are likely to appear.

我必须将此应用程序迁移到框架4.0,保持asp页面不变。这会导致在迁移应用程序期间出现任何问题。如果是这样,可能会出现什么样的问题。

Secondly, if i do decide to convert those classic asp pages to .aspx pages than what do i have to do.Kindly guide me on the following issue.

其次,如果我决定将这些经典的asp页面转换为.aspx页面而不是我必须做的事情。请指导我以下问题。

1 个解决方案

#1


1  

Classic ASP pages will cause no problem to any .NET code - they simply are not present.

经典的ASP页面对任何.NET代码都没有问题 - 它们根本就不存在。

To convert them - there is no magic. You just have to find out what they do, then do the same thing in ASP.NET. Do not make a simple one to one conversion, instead take advantage of things like server controls.

转换它们 - 没有魔力。你只需要找出他们做了什么,然后在ASP.NET中做同样的事情。不要进行简单的一对一转换,而是利用服务器控件之类的东西。

#1


1  

Classic ASP pages will cause no problem to any .NET code - they simply are not present.

经典的ASP页面对任何.NET代码都没有问题 - 它们根本就不存在。

To convert them - there is no magic. You just have to find out what they do, then do the same thing in ASP.NET. Do not make a simple one to one conversion, instead take advantage of things like server controls.

转换它们 - 没有魔力。你只需要找出他们做了什么,然后在ASP.NET中做同样的事情。不要进行简单的一对一转换,而是利用服务器控件之类的东西。