程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 用C#實現無需iiS環境就可以執行aspx文件

用C#實現無需iiS環境就可以執行aspx文件

編輯:關於C語言

myhost.cs 編譯:
csc MyHost.cs /r:System.Web.dll

using System;
using System.IO;
using System.Web;
using System.Web.Hosting;


public class MyExeHost : MarshalByRefObject {

    public void ProcessRequest(String page)
        {
        HttpRuntime.ProcessRequest(new SimpleWorkerRequest(page, null, Console.Out));
        }

    public static void Main(String[] arguments)
        {
        MyExeHost host = (MyExeHost)ApplicationHost.CreateApplicationHost(typeof(MyExeHost), "/foo", Environment.CurrentDirectory);
           foreach (String page in arguments) {
            host.ProcessRequest(page);
        }
    }
}
test.ASPx
<Html>
        <body>
                Time is now: <%=Now%>
        </body>
</Html>
成功後就可以用下面的方法執行
MyHost.exe Test.ASPx > Test.htm
test.htm就是test.ASPx執行後的結果

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved