Click here to Skip to main content
15,881,248 members
Articles / Web Development / HTML
Article

Type-Ahead suggest textbox server control with Google AJAXSLT

Rate me:
Please Sign up or sign in to vote.
4.46/5 (13 votes)
22 Mar 20063 min read 189.9K   1.9K   70   34
An ASP.NET type-ahead suggest textbox (Autocomplete) that leveraging on Google AJAXSLT

Sample Image - typeahead.jpg

Introduction

There are quite a number of AJAX libraries/frameworks designed to run on the .NET framework. The typical example would be Microsoft Atlas. As a beginner of AJAX, I'd like to have an in depth understanding of the technologies. Thus, I spent some time to first create something much more simplified which I could also use in my web application projects.

In many web applications, we need to place a lookup textbox or combo box (drop down) to enable users to select one of the records in a master table (product, customer, employee, bin locations, and etc.). Sometimes, the master table comprises of thousands of records, and binding all the records to a combo box is rather inefficient and potentially causes slowness in page loading.

I was inspired by Google Suggest and the Gmail email address field that heavily employ AJAX technologies. I also learned that Google offers an open source project, Google AJAXSLT, which is a set of JavaScript's that are intended for XML transformation to HTML at the client side (web browser) using XSLT and XPATH. This initiative is to promote development of more user friendly fat clients as it reduces the load on the servers substantially.

I decided to spend some time to explore the synergy of ASP.NET and AJAXSLT. Hence, I tried to create a type-ahead suggest textbox that'd make asynchronous requests to the server as the user inputs text. The result that closely matches the input string will be returned to the drop down area below the textbox asynchronously.

Background

I created a custom server control which consists of a TextBox and a div object. The "keyUp" event of the Textbox triggers a request to the server, and expects the server to fetch the first 10 records (select the top 10 fields from the table where the field like "keyword%") to the browser in XML form.

At the client-end, which is the web browser, I employ three AJAXSLT functions, "xmlParse()", "xsltProcess()" and "el". "el()" is just a shortcut to "document.getElementById()". However "xmlParse" and "xsltProcess" are designed to parse XML, XSLT, and transform it into HTML.

The HTML output will be injected into the div object which is the drop down area intended for records selection.

The downloadable demo project requires the "Northwind" database of SQL Server to work with, and it uses both the "Products" and the "Customer" tables.

Using the code

The way to use this control is extremely easy.

  1. Copy all the five JavaScript files from the downloadable source file (typeahead_src.zip) into your web folder. There are the "dom.js", "misc.js", "xpath.js", "xslt.js" (from Google AJAXST), and "ws.js" (with reference to this) files, and make a reference in the header of your web page as follows:
    HTML
    <script src="js/misc.js" type="text/javascript"></script>
    <script src="js/dom.js" type="text/javascript"></script>
    <script src="js/xpath.js" type="text/javascript"></script>
    <script src="js/xslt.js" type="text/javascript"></script>
    <script src="js/ws.js" type="text/javascript"></script>
  2. Add a new server control in the toolbox by selecting "aspnetcs_TypeAhead.dll" in the source file.
  3. Drag and drop the "TypeAhead" control into your web page.
  4. Since I mostly use SQL Server in my web applications, the TypeAhead textbox works only with SQL Server currently. Hence you need SQL Server to be the backend database. There are three essential properties that need to be set up before you can even test it. They are:
    • ConnectionString
    • TableName
    • DataField
    C#
    private void Page_Load(object sender, System.EventArgs e)
    { 
      TypeAhead1.ConnectionString="server=localhost;" + 
                 "database=Northwind;integrated security=SSPI";
      TypeAhead1.TableName="Products";
      TypeAhead1.DataField="ProductName";
    }
  5. That is it! You do not need to create another aspx page to respond to the request from the web browser.

Areas of Future Improvement

  1. Support generic data source.
  2. Allow user to use a keyboard (only with mouse, currently) for record selection.
  3. Introduce more intelligent logics to reduce frequency of server requests.
  4. Ability to display more informative results instead of just the selected field in the drop down area.
  5. Fonts of drop down area should be configurable.

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
Web Developer
Malaysia Malaysia
Visit my personal website to know more about me.
www.rainforestnet.com

Comments and Discussions

 
QuestionType-Ahead Server Control Pin
Gail Sims6-Jul-08 10:21
Gail Sims6-Jul-08 10:21 
AnswerRe: Type-Ahead Server Control Pin
Member 252446923-Jul-08 10:18
Member 252446923-Jul-08 10:18 
GeneralRe: Type-Ahead Server Control Pin
Gail Sims24-Jul-08 3:55
Gail Sims24-Jul-08 3:55 
GeneralRe: Type-Ahead Server Control [modified] Pin
jimboy3333333335-Sep-08 7:40
jimboy3333333335-Sep-08 7:40 
Questionallow the user to use a keyboard Pin
pradeepKumar527-Apr-08 22:50
pradeepKumar527-Apr-08 22:50 
GeneralTypeAhead in GridView Pin
jerry123422-Dec-07 8:43
jerry123422-Dec-07 8:43 
GeneralTypeAhead in Gridview Pin
Thanks for all the fish22-Dec-07 8:39
Thanks for all the fish22-Dec-07 8:39 
GeneralUse AJAX Control Toolkit Pin
drookue15-Nov-07 12:10
drookue15-Nov-07 12:10 
Question.Text Property Pin
drookue23-Oct-07 15:01
drookue23-Oct-07 15:01 
AnswerRe: .Text Property Pin
gauzzastrip15-Nov-07 9:35
gauzzastrip15-Nov-07 9:35 
QuestionRe: .Text Property Pin
lahiru liyanage13-Mar-11 23:41
lahiru liyanage13-Mar-11 23:41 
GeneralControl was hidding when use listBox Pin
anikepati sunil8-Aug-07 9:27
anikepati sunil8-Aug-07 9:27 
Generalgood control Pin
tanthuc14-May-07 21:56
tanthuc14-May-07 21:56 
QuestionModification for tag list? Pin
patsikes28-Feb-07 9:44
patsikes28-Feb-07 9:44 
GeneralFireFox Pin
afzaal22-Feb-07 17:44
afzaal22-Feb-07 17:44 
QuestionHow to use dataset in this application Pin
urs_ashokprabhu25-Sep-06 4:26
urs_ashokprabhu25-Sep-06 4:26 
Hi
Please anyone guide me to use dataset in this application. Actually don't want to populate all the values from table in to the typeahead drop down box. Further i want to use values from the dataset. Expecting for the reply

Thanks


Bala
AnswerRe: How to use dataset in this application Pin
Teng-Yong25-Sep-06 4:43
Teng-Yong25-Sep-06 4:43 
GeneralParent Child Textboxes Pin
danmorph20-Sep-06 15:55
danmorph20-Sep-06 15:55 
GeneralRe: Parent Child Textboxes Pin
Teng-Yong20-Sep-06 16:00
Teng-Yong20-Sep-06 16:00 
GeneralUnusable Pin
Jan Seda19-Sep-06 3:46
professionalJan Seda19-Sep-06 3:46 
GeneralRe: Unusable Pin
Teng-Yong20-Sep-06 16:02
Teng-Yong20-Sep-06 16:02 
QuestionI like it but keep getting an error Pin
a3net_marc25-Jul-06 6:25
a3net_marc25-Jul-06 6:25 
AnswerRe: I like it but keep getting an error Pin
Teng-Yong25-Jul-06 14:42
Teng-Yong25-Jul-06 14:42 
GeneralRe: ConnectionString Pin
Teng-Yong7-Jul-06 16:52
Teng-Yong7-Jul-06 16:52 
GeneralBeautiful work [modified] Pin
ZPharaoh2-Jun-06 16:59
ZPharaoh2-Jun-06 16:59 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.