CheckCol.ashx
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:1k
源码类别:

行业应用

开发平台:

JavaScript

  1. <%@ WebHandler Language="C#" Class="CheckLj" %>
  2. using System;
  3. using System.Web;
  4. using student.BLL;
  5. public class CheckLj : IHttpHandler {
  6.     
  7.     public void ProcessRequest (HttpContext context) {
  8.         context.Response.ContentType = "text/plain";
  9.        
  10.         string aa = context.Request.QueryString["lj"].ToString();
  11.             if(new student.BLL.res_Col().Exists(aa))
  12.         {
  13.            aa="no";
  14.         }
  15.         else
  16. {
  17.         aa = "ok";
  18. }
  19.         context.Response.Write(aa);
  20.     }
  21.  
  22.     public bool IsReusable {
  23.         get {
  24.             return false;
  25.         }
  26.     }
  27. }