Default.aspx页
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_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 language="javascript" type="text/javascript" src="js/jquery-1.2.6-vsdoc-cn.js"></script>
<script language="javascript" type="text/javascript" >
$("#lbl_count").load("Handler.ashx", { "resultType": "text" });
</script>
</head>
<body>
    <form id="form1" runat="server">
      <asp:Label ID="lbl_count" runat="server"></asp:Label>
    </form>
</body>
</html>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("Hello World");
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }}怎么没有输出“Hello World”呢