5,696,038 members and growing! (11,224 online)
Email Password   helpLost your password?
Web Development » Validation » General     Intermediate

CustomValidator with XMLHttpRequest object

By Anatoly Rapoport

CustomValidator which uses XMLHTTpRequest to make validation.
C#, Javascript, Windows, .NET 1.1, .NET, ASP.NET, Visual Studio, VS.NET2003, Dev

Posted: 8 Feb 2004
Updated: 8 Feb 2004
Views: 47,415
Bookmarked: 16 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
5 votes for this Article.
Popularity: 2.60 Rating: 3.71 out of 5
0 votes, 0.0%
1
2 votes, 40.0%
2
0 votes, 0.0%
3
2 votes, 40.0%
4
1 vote, 20.0%
5

Introduction

ASP.NET supplies a few validator controls to ensure that user input data will match application needs. Most of them check if control data is not empty or entered data matches specific data type etc. In real world ASP.NET applications, we very often need to check inserted value against database. ASP.NET supplies a CustomValidator which can be useful for this task. CustomValidator uses server-side events where programmer may write code to check whatever or not control value meets business rules. Of course, this kind of validation needs submit. In this article, I will provide an alternate way to solve this problem.

Background

Since the beginning of my career as a web programmer, I wondered if there is any way to get data from web server to HTML page which is open on client machine. This problem is solved in many ways including the use of IFRAME or XML. For me, it was very useful to read this great article: Client Side Validation Using the XMLHTTPRequest Object By Jonathan Zufi, to understand how this things work and how I can use XMLHTTPRequest in ASP.NET server control.

Using the code

In a few sentences, I'll explain how my validator works: I inherit my validator from CustomValidator. CustomValidator has ClientValidateFunction property which may be useful when developers want to validate on client. I insert my function which makes XMLHTTPRequest to SAME PAGE with a few parameters in QueryString. I override onLoad() event. Inside it, I check by QueryString parameters if I should raise custom event (called ClientValidate).

using System;
using System.Data; 
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.IO;
using System.Web;
using System.Design;
using System.Drawing.Design;
using System.Collections.Specialized;  

namespace Gilat
{
    /// <summary>

    /// GilatValidator makes XMLHTTPRequest

    /// to server to validate without full page refresh

    /// </summary>

    [DefaultProperty("Text"), ToolboxData("<{0}:GilatValidator 
    runat="server"></{0}:GilatValidator>")]
    public class GilatValidator : System.Web.UI.WebControls.CustomValidator
    {
        //function makes XMLHTTPRequest

        const string XMLHTTPRequestScript = @"
        <script language="'javascript'">

            //GilatControlsUtils.RegisterXMLHTTPRequestScript
            function doXMLHTTPRequest(Url)
            {
                var oXMLHTTP = new ActiveXObject(""Microsoft.XMLHTTP"");
    
                oXMLHTTP.open(""POST"", Url, false);

                try
                {
                    oXMLHTTP.send();
                    return oXMLHTTP.responseText;
                }    
                catch(e) 
                {
                    alert(""XMLHTTPRequest failed"");
                    return """";
                }

            }
        </script>";

        string GilatValidatorClientScript = @"
        <script language="'javascript'">
        
        function {0}Validate(source, arguments)
        {{
            var sURL = ""{1}__serverSideRequest=true&__source="" + source.id;

            //add ControlToValidate
            if(source.controltovalidate != undefined)
            {{
                sURL += ""&ControlToValidateValue="" + 
                  document.all(source.controltovalidate).value;                
            }}
        
            var ControlsToValidate = source.ControlsToValidate;
            if(ControlsToValidate != undefined)
            {{
                var arrControlsToValidate = ControlsToValidate.split("";"");
                for(var i=0; i<arrControlsToValidate.length; i++)
                {{
                    var Control = document.all(arrControlsToValidate[i]);
                    if(Control) 
                    {{
                        sURL += ""&"" + Control.id + ""="" + Control.value;
                    }}    
                }} 
            }}

            arguments.IsValid = (doXMLHTTPRequest(sURL) == ""true"");
        }}
        </script>";

        //variable keeps delimited by ';' string of Control ID's

        private string _ControlsToValidate;

        public string ControlsToValidate
        {
            get
            {
                return _ControlsToValidate;
            }
            set
            {
                _ControlsToValidate = value;
            }
        }

        protected override void OnPreRender(EventArgs e)
        {
            base.OnPreRender (e);
            //add ControlsToValidate as attribute

            //so it will be available at client

            if(ControlsToValidate != string.Empty) 
                this.Attributes.Add("ControlsToValidate", ControlsToValidate);   
            this.ClientValidationFunction = this.ID + "Validate";
            //use existed QueryString collection

            string Url = Page.Request.Url.ToString();
            if(Page.Request.QueryString.ToString() != string.Empty)
                Url += "&";
            else
                Url += "?";
            Page.RegisterClientScriptBlock("GilatValidatorScript", 
               string.Format(GilatValidatorClientScript, ID, Url));  
            if(!Page.IsClientScriptBlockRegistered("XMLHTTPRequestScript"))
            {
                Page.RegisterClientScriptBlock("XMLHTTPRequestScript", 
                                                   XMLHTTPRequestScript);
            }    
        }

        public event 
          System.Web.UI.WebControls.ServerValidateEventHandler ClientValidate;

        /// <summary>

        /// overrides base event

        /// </summary>

        /// <PARAM name="e"></PARAM>

        protected override void OnLoad(EventArgs e)
        {
          base.OnLoad(e);
          //if this page called from client side validation

          //raise new event

          HttpRequest Request = this.Page.Request;

          if(Request.QueryString["__serverSideRequest"] == "true" && 
                Request.QueryString["__source"] == this.ID)
          {
            Page.Response.Clear();   
            ServerValidateEventArgs ServerValidateE = new 
              ServerValidateEventArgs(Request.QueryString["ControlToValidateValue"], 
              false);
            OnCallbackValidation(ServerValidateE); 
            if(ServerValidateE.IsValid)
                Page.Response.Write("true");   
            Page.Response.End(); 
          }
        }

        protected virtual void OnCallbackValidation(ServerValidateEventArgs e) 
        {     
            if (ClientValidate != null) 
            {
                ClientValidate(this, e);
            }  
        }

    }

}

Points of Interest

A few important issues:

  1. Events order: ClientValidation event happens after PageLoad event.
  2. Inside ClientValidation event, you can't use control values, because I do not pass ViewState.
  3. Property ControlsToValidate is the only way to pass control values to server.
  4. ControlsToValidate includes any Control ID delimited by ";".

Inside ClientValidate event, you may access these values like:

string MyComboValue = Request.QueryString[MyCombo.ID];

You can still use args.Value (if you use ControlToValidate) and args.IsValid like in normal ServerValidate event. See it in the attached sample project. Of course, validator will work only on browsers with XMLHTTPRequest installed. Another thing: if you're having an exception inside the ClientValidation event, you can't see it on page. But you may enable Application trace and then check it from there.

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

About the Author

Anatoly Rapoport


I work in MIS department of Gilat Satellite company in Israel.
Occupation: Web Developer
Location: Israel Israel

Other popular Validation articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 8 of 8 (Total in Forum: 8) (Refresh)FirstPrevNext
GeneralCross-browser XmlHttpRequestsussRicardo Stuven9:33 10 Dec '04  
GeneralRe: Cross-browser XmlHttpRequestsussRicardo Stuven11:11 10 Dec '04  
GeneralRe: Cross-browser XmlHttpRequestmemberAnatoly Rapoport23:43 11 Dec '04  
GeneralRe: Cross-browser XmlHttpRequestmemberYazeed hs2:08 13 Dec '05  
GeneralDoesn't need submitmemberMark Focas12:32 9 Feb '04  
GeneralRe: Doesn't need submitsussAnatoly Rapoport21:02 9 Feb '04  
GeneralRe: Doesn't need submitmemberdavidtjudd18:33 19 Feb '04  
GeneralRe: Doesn't need submitmemberPaul Russo7:23 20 Jun '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 8 Feb 2004
Editor: Smitha Vijayan
Copyright 2004 by Anatoly Rapoport
Everything else Copyright © CodeProject, 1999-2008
Web16 | Advertise on the Code Project