码迷,mamicode.com
首页 > 其他好文 > 详细

ashx接收参数 ashx传递参数

时间:2017-07-13 10:35:57      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:data   get   proc   ble   response   sel   c#   style   javascrip   

原文发布时间为:2009-09-30 —— 来源于本人的百度文章 [由搬家工具导入]

Handler.ashx文件:

<%@ WebHandler Language="C#" Class="Handler" %>

using System;
using System.Web;
using System.Data;
public class Handler : IHttpHandler {
   
    public void ProcessRequest (HttpContext context) {
        string strSql = "Select IP from Web where _D="+context.Request.QueryString["id"];
        DataUtility objData = new DataUtility();
        DataSet dstList = objData.QueryData(strSql);
        context.Response.ContentType = "text/plain";
        context.Response.Write("document.write(\"" + dstList.Tables[0].Rows[0][0].ToString() + "\")");
    }

    public bool IsReusable {
        get {
            return false;
        }
    }

html或者 aspx文件:

<!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="/ajax/AjaxHandler"></script>
    <title>无标题页</title>
</head>
<body>
<script type="text/javascript" src="Handler.ashx?id=2"></script>
</body>
</html>

输出结果为 ID为2的 IP

ashx接收参数 ashx传递参数

标签:data   get   proc   ble   response   sel   c#   style   javascrip   

原文地址:http://www.cnblogs.com/handboy/p/7158358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!