摘要:
新建一般处理程序ajax.ashx<%@ WebHandler Language="C#" Class="ajax" %>using System;using System.Web;public class ajax : IHttpHandler { public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/plain"; if (!string.IsNullOrEmpty(context.Request. 阅读全文
posted @ 2010-09-01 17:55 达奇 阅读(325) 评论(0) 推荐(0) 编辑