⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 callbackhelper.cs

📁 it is the ajax base code use how we use the ajax in th .net
💻 CS
字号:
using System;
using System.Web;

namespace WCPierce.Web
{
	public sealed class CallBackHelper
	{
		private CallBackHelper() { }

    public static bool IsCallBack
    {
      get
      {
        HttpRequest hr = CallBackHelper.GetHttpRequest();
        return hr.Params["IsCallBack"] != null;
      }
    }

    public static void Write( string Text )
    {
      HttpResponse hr = CallBackHelper.GetHttpResponse();
      
      hr.Clear();
      hr.StatusCode = 200;
      hr.StatusDescription = "OK";
      hr.Write( Text );
      hr.Flush();
      hr.End();
    }

    public static void HandleError( Exception e )
    {
      HttpResponse hr = CallBackHelper.GetHttpResponse();

      hr.Clear();
      hr.StatusCode = 200;
      hr.StatusDescription = "ERROR";
      hr.Write( e.ToString() );
      hr.Flush();
      hr.End();
    }

    private static HttpResponse GetHttpResponse()
    {
      HttpResponse hr = null;
      try
      {
        hr = System.Web.HttpContext.Current.Response;
      }
      catch( NullReferenceException nre )
      {
        throw new Exception("CallBackHelper could not access current HttpResponse object", nre);
      }

      return hr;
    }

    private static HttpRequest GetHttpRequest()
    {
      HttpRequest hr = null;
      try
      {
        hr = System.Web.HttpContext.Current.Request;
      }
      catch( NullReferenceException nre )
      {
        throw new Exception("CallBackHelper could not access current HttpRequest object", nre);
      }

      return hr;
    }
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -