-1

I would like to know if there any tools that can run in a win 7 64 bit machine to convert my classic asp site to Web Form/MVC in C#. I found there was a tool to convert it in Framework 1.1, but it doesn't work quite well.

Can someone suggest?

4

3 に答える 3

6

AFAIK、そのようなツールは存在しません、そしてそれが存在したとしても、それが何かを正確に変換するだろうとは思えません。ASP.NETとASPは異なるパラダイムです。

これは自分で行う必要があります。

于 2012-05-10T03:59:44.470 に答える
1

My two cents and not an answer per-se, is to not try and update the entire website at once. Particularly if it is large site. It is quite trivial to run classic and asp.net websites side by side. Make new pages/functionality asp.net. As you are doing that break the website down into functional units then start to convert those units.

于 2012-05-10T04:23:35.330 に答える
1

Not a real answer but in my opinion it would be less painful going from asp classic directly to mvc, they are somehow closer in their approach to web development, webforms use a complete different paradigm that relies on an artificial event model. Having said that I don't know about any conversion tool that can help you in the process, and as you already found out, the conversion tool on framework 1.1 doesn't really work.

于 2012-05-17T15:03:01.840 に答える