jquery 库最新版下载:jquery-1.4.2min.js
jquery 1.3.2mini版:jquery-1.3.2min.js
中文手册下载地址(超酷版):jquery12api
前台代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ajax.aspx.cs" Inherits="ajax" %>
Jquery Ajax实例
JavaScript" src="script/jquery-142min.js" mce_src="script/jquery-142min.js">
Handler.ashx:
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
using System.Data.SqlClient;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
//context.Response.Write("Hello World");
if (context.Request["name"].ToString() == "admin" && context.Request["pass"].ToString() == "admin")
{
context.Response.Write("Y");
}
else
{
context.Response.Write("N");
}
}
public bool IsReusable
{
get
{
return false;
}
}
}更多Asp.net Jquery Ajax 实例关文章请关注PHP中文网!









