Convert html to aspx

后端 未结 3 1507
遥遥无期
遥遥无期 2021-01-20 00:53

Is there any tool or code to convert HTML files to .ASPX?

Elaboration to earlier question: I am looking for tool or code that automatically converts HTML controls to

3条回答
  •  一生所求
    2021-01-20 01:04

    No, ASP.NET code is embedded in your regular HTML code, so your default web pages will have the extension .aspx but there are a few other things you need to do to get a ASP.NET site up and running.

    Check out this link with some help on how to get started with ASP.NET
    http://www.asp.net/get-started/

    Also, here's one of my favorite books on the subject that really helped me learn more about ASP.NET (you might want to find a version 4.0 book though if you are working with the new features of ASP.NET.)

提交回复
热议问题