解决方案 »

  1.   

    <%@ WebHandler Language="C#" Class="Handler" %>using System;
    using System.Web;public class Handler : IHttpHandler {
        
        public void ProcessRequest (HttpContext context) {
            context.Response.ContentType = "text/html";
            string action=context.Response["name"];
            int age = Convert.ToInt32(context.Response["age"]);
            context.Response.Write("<font color='green'>Hello"+action+"我今年"+age+"岁</font>");     
        }
     
        public bool IsReusable {
            get {
                return false;
            }
        }}
      

  2.   


     string action=context.Request["name"];
      

  3.   

    这句他老不过 int age = Convert.ToInt32(context.Response["age"]);