时间:2021-07-01 10:21:17 帮助过:8人阅读
原文发布时间为:2009-09-30 —— 来源于本人的百度文章 [由搬家工具导入]
html页面执行.NET函数 html与ashx的结合
1、添加一般应用程序Handler.ashx
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
context.Response.Write("document.write(\"Hello World\")");
}
public bool IsReusable {
get {
return false;
}
}
}
2、添加html页面 HTMLPage.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
执行html,则将看到 “Hello World”
操作数据库 方法同上(见http://hi.baidu.com/handboy/blog/item/453bcbf40ff650d3f2d38501.html)! 只是程序变化。命名空间注意一下即可。
html执行.NET函数 html操作数据库 html与ashx结合
标签:plain log htm oid 工具 src ash head handler