Alternatives to IIS for Windows to run ASP.NET

前端 未结 7 640
天命终不由人
天命终不由人 2021-01-31 03:18

Are there any alternatives to IIS for Windows to run ASP.NET?

CassiniEx seems pretty old?

7条回答
  •  面向向阳花
    2021-01-31 03:43

    If you have any VisualStudio components installed, this will give you the IIS functionality on http://localhost:8080/ Dev server version may vary, of course (10.0 in the example below).

    mkdir c:\inetpub\wwwroot
    cd "C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0"
    WebDev.WebServer40 /port:8080 /path:"c:\inetpub\wwwroot" /vpath:"/"
    

提交回复
热议问题