首页 > 代码库 > html执行.NET函数 html操作数据库 html与ashx结合
html执行.NET函数 html操作数据库 html与ashx结合
原文发布时间为: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 xmlns="http://www.w3.org/1999/xhtml" >
<head>
<script type="text/javascript" src=http://www.mamicode.com/"/ajax/AjaxHandler"></script>
<title>无标题页</title>
</head>
<body>
<script type="text/javascript" src=http://www.mamicode.com/"ASHX/Handler.ashx"></script>
</body>
</html>
执行html,则将看到 “Hello World”
操作数据库 方法同上(见http://hi.baidu.com/handboy/blog/item/453bcbf40ff650d3f2d38501.html)! 只是程序变化。命名空间注意一下即可。
html执行.NET函数 html操作数据库 html与ashx结合
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。