Click here to Skip to main content
Click here to Skip to main content

JQuery + ASP.NET auto complete without web service

By , 9 Apr 2011
 
Ever thought of creating an auto complete that interact with Database/Data source in ASP.NET and wonder how you going to do it? Well, the answer is simple, you need a web service, right? Wrong!
 
In this article, I will explain how to create auto complete functionality in ASP.NET JQuery without using a web service.
 
First, let's make a list of things we are going to use:
1. Jquery Library
2. XML File(Data source)
3. ASP.NET Page

 
Let's get started.
 
In Visual Studio, create a web site/ web Application and then create two folders to put the JQuery Library and Css files. Create .aspx file and then add the code in the code behind. All I do in this code is simply read the XML file and then load it to the dataset (you can use xPath to manipulate xml data, I just happen to prefer using dataset.)
Here is my Code:
 
protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            XmlDocument xDoc = new XmlDocument();
            xDoc.Load(Server.MapPath("Data/Customers.xml"));
            DataSet ds = new DataSet();
            XmlNodeReader xnr = new XmlNodeReader(xDoc);
            ds.ReadXml(xnr);
            foreach (DataRow _row in ds.Tables["Customers"].Rows)
            {
                ClientScript.RegisterArrayDeclaration("ListItems", "\"" + _row["ContactName"].ToString() + "\"");
            }
        }
    }
 
This is a simple straight forward code, but it's important to note the Clientscript.RegisterArrayDeclaration which creates a JavaScript Array. We then Access the Array using Jquery like this:
 
$(function () {
           $("#tags").autocomplete({
               source: ListItems
           });
       });
 
Just few things I need to explain.
  1. Autocomplete expects an Array, so we create this in C#, so you can replace the XML with your Database source and you will be able to create an Array for the Autocomplete.
  2. The Array name is the name you passed in the
    ClientScript.RegisterArrayDeclaration

     
    It must exist in runtime for you code to execute correctly.
Now your Autocomplete should be working!
 
Please feel free to correct me where I am wrong as I am still learning....

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Seabata
Software Developer Avanade
South Africa South Africa
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralHi Guys Sorry for responding to the questions months after ...memberSeabata16 Nov '11 - 2:43 
Generalwhat if on the other hand anybody adds a new customer into t...memberMember 174238114 Nov '11 - 0:23 
GeneralRe: what if on the other hand anybody adds a new customer into t...memberSeabata19 Jun '12 - 21:51 
GeneralI tried auto complete with 1.Webservice 2.Handler 3.Jquery ...memberjpratik19 Apr '11 - 4:45 
GeneralGreat short solution. Keep up the good work!memberMember 414818817 Apr '11 - 19:28 
GeneralExcellent Tip. Keep it upmemberWonde Tadesse15 Apr '11 - 5:04 
GeneralReason for my vote of 5 Nice Way!!memberGandalf - The White11 Apr '11 - 22:56 
GeneralYou can create Handlers in place of webservice if you had an...membercode in play11 Apr '11 - 22:10 
GeneralReason for my vote of 5 nicemembercode in play11 Apr '11 - 22:08 
QuestionAny complete code sample?membervery-old-timer16 Oct '11 - 2:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 9 Apr 2011
Article Copyright 2011 by Seabata
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid