日期:2014-05-17 浏览次数:20513 次
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="zt_Default" %> <!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 runat="server"> <title></title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { $("#confirm").click(function() { $.ajax({ url: 'Handler.ashx', dataType: 'text', data: 'id=1', success: function(msg) { alert(msg); } }); }); }); </script> </head> <body> <form id="form1" runat="server"> <div> <input type="button" value="确定" id="confirm" /> </div> </form> </body> </html>
<%@ WebHandler Language="C#" Class="Handler" %> using System; using System.Web; public class Handler : IHttpHandler { public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/plain"; string x = context.Request.QueryString["id"].ToString(); context.Response.Write('x'); } public bool IsReusable { get { return false; } } }