Click here to Skip to main content
15,886,110 members
Articles / Web Development / XHTML

AJAX WAS Here - Part 3 : Auto Complete TextBox

Rate me:
Please Sign up or sign in to vote.
4.79/5 (35 votes)
2 May 20058 min read 481.7K   3.7K   158  
A custom AJAX - ASP.NET control.
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;
    }
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions