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執行後的結果