In this time CMSN Software has decided to provide a little bit of advance
tutorial. "How to use Ajax auto complete in asp.net" simply shows you
how to implement auto complete text box in ASP.Net. Technically we are passing value
to server side using simple Ajax request and then search inside a xml file using
Linq to xml. Then format and display the response as a auto complete suggestions.
As usual in this tutorial also CMSN Software shows how to use multiple technologies
to accomplish same task.
In the previous tutorial of CMSN Software Tutorials"How
to call CSharp function in Ajax"
we
explained basic implementation of most wanted functions in Ajax based applications.
You can use that tutorial to get a clear idea about implementing high quality Ajax
based applications.
In this tutorial you can get a clear idea about how to use
JavaScript
ASP.NET Ajax
jQuery
to implement auto complete text box in asp.net.
This sample shows you how to implement auto complete using JavaScript in
ASP.Net.
<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="HowToUseAjaxAutoComplete.aspx.cs"Inherits="JavaScriptSample.HowToUseAjaxAutoComplete"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>How to use Ajax auto complete in asp.net || JavaScript Sample</title><linkhref="Style/AutoComplete.css"rel="stylesheet"type="text/css"/><scripttype="text/javascript">function fillWebsiteDetails(text, url) {
/// <summary>/// fill website details when click on suggestions./// </summary>
document.getElementById('websiteUrl').innerHTML = url;
document.getElementById('suggestions').style.display = 'none';
document.getElementById('autoCompleteBox').value = text;
}
function getSuggestions(webSiteTitle) {
/// <summary>/// Call suggestion web method via Ajax request/// </summary>if (window.XMLHttpRequest) {
// for IE7+, Firefox, Chrome, Opera, Safarithis.xmlhttp = new XMLHttpRequest();
}
else {
// for IE6, IE5try {
this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e1) {
try {
// older version of Msxmlthis.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
this.xmlhttp = null;
}
}
}
xmlhttp.onreadystatechange = function () {
/// <summary>/// Display suggestions when success/// </summary>if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
// success Status var xmlDoc = xmlhttp.responseXML;
document.getElementById('autoSuggestionsList').innerHTML = '';
var website = xmlDoc.getElementsByTagName("Websites");
if (website.length > 0) {
for (var i = 0; i < website.length; i++) {
document.getElementById('autoSuggestionsList').innerHTML +=
'<li onclick=fillWebsiteDetails(this.innerHTML,"' +
website[i].getElementsByTagName("NavigationLink")[0].childNodes[0].nodeValue + '");>'
+ website[i].getElementsByTagName("Title")[0].childNodes[0].nodeValue + '</li>';
}
document.getElementById('suggestions').style.display = 'block';
}
}
}
this.xmlhttp.open("GET", "WebsiteList.asmx/WebsiteDetails?websiteTitle=" + webSiteTitle, true);
this.xmlhttp.send();
}
</script></head><body><formid="form1"runat="server"><div><inputid="autoCompleteBox"type="text"onkeyup="getSuggestions(this.value);"/><divclass="suggestionsBox"id="suggestions"style="display: none;"><ulid="autoSuggestionsList"class="suggestionList"></ul></div><divid="websiteUrl"></div></div></form></body></html>
In the previous tutorial of CMSN Software Tutorials ("How
to call CSharp function in Ajax") JavaScript section
We
explained the basic steps of calling CSharp methods via Ajax request.
The main difference here is
we
are passing parameter to the CSharp method. To accomplished that we send
parameter as query string using open("GET", url, async) method of the XMLHttpRequest
object. Then format the response from WebServise and display as suggestion.
The response for this request is simple xml so
we
can parse that xml and get whatever details
we
want.
This sample shows you how to implement auto complete using in ASP.Net Ajax
<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="HowToUseAjaxAutoComplete.aspx.cs"Inherits="MicrosoftAjaxSample.HowToUseAjaxAutoComplete"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>How to use Ajax auto complete in asp.net | Microsoft Ajax Sample</title><linkhref="Style/AutoComplete.css"rel="stylesheet"type="text/css"/><scripttype="text/javascript">function fillWebsiteDetails(text, url) {
/// <summary>/// fill website details when click on suggestions./// </summary>
document.getElementById('websiteUrl').innerHTML = url;
document.getElementById('suggestions').style.display = 'none';
document.getElementById('autoCompleteBox').value = text;
}
function getSuggestions(webSiteTitle) {
/// <summary>/// get suggestions based on the entered text/// </summary>
MicrosoftAjaxSample.WebsiteList.WebsiteDetails(webSiteTitle, OnComplete, OnFailer);
}
function OnComplete(result) {
/// <summary>/// Display suggestions when success/// </summary>
document.getElementById('autoSuggestionsList').innerHTML = '';
var website = (typeof result) == 'string' ? eval('(' + result + ')') : result;
if (website.length > 0) {
for (var i = 0; i < website.length; i++) {
document.getElementById('autoSuggestionsList').innerHTML +=
'<li onclick=fillWebsiteDetails(this.innerHTML,"' + website[i].NavigationLink + '");>'
+ website[i].Title + '</li>';
}
document.getElementById('suggestions').style.display = 'block';
}
}
function OnFailer(result) {
/// <summary>/// show error message when there is an error/// </summary>
alert("Error: " + result.get_message());
}
</script></head><body><formid="form1"runat="server"><asp:ScriptManagerID="WebsiteDetailsScriptManager"runat="server"><Services><asp:ServiceReferencePath="~/WebsiteList.asmx"/></Services></asp:ScriptManager><div><inputid="autoCompleteBox"type="text"onkeyup="getSuggestions(this.value);"/><divclass="suggestionsBox"id="suggestions"style="display: none;"><ulid="autoSuggestionsList"class="suggestionList"></ul></div><divid="websiteUrl"></div></div></form></body></html>
In the previous tutorial of CMSN Software Tutorials ("How
to call CSharp function in Ajax") Asp.Net section
we
explained basic steps of calling CSharp methods using Script Manager. Nothing
difference here other than passing the parameter to WebService method. Then
format the response and display as suggestion. Response of this section is same
as the CSharp typed list so
we
can access it same as in CSharp.
This sample shows you how to implement auto complete using jQuery in ASP.Net.
<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="HowToUseAjaxAutoComplete.aspx.cs"Inherits="JquerySample.HowToUseAjaxAutoComplete"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>How to use Ajax auto complete in asp.net | jQuery Sample</title><linkhref="Style/AutoComplete.css"rel="stylesheet"type="text/css"/><scripttype="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script><scripttype="text/javascript">
$("#autoCompleteBox").live('keyup', function (event) {
/// <summary>/// call to web service and display suggestions./// </summary>if ($(this).val().length == 0) {
// Hide the suggestion box if text is empty.
$('#suggestions').hide();
} else {
//get suggestions.
getWebsiteDetails("WebsiteList.asmx/WebsiteDetails",
"{'websiteTitle':'" + $("#autoCompleteBox").val() + "'}",
onRequestSuccess,
onRequestFail);
}
});
$('#autoCompleteBox').live('keydown', function (event) {
/// <summary>/// this is used to prevent the post back when hit enter button./// </summary>if (event.keyCode == '13') {
event.preventDefault();
}
});
function getWebsiteDetails(url, data, successEvent, failerEvent) {
$.ajax({
/// <summary>/// Perform an asynchronous HTTP (Ajax) request to get web site details/// </summary>
type: "POST",
url: url,
data: data,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: successEvent,
failure: failerEvent
});
}
function onRequestSuccess(response) {
/// <summary>/// Display server time when success/// </summary>
$('#autoSuggestionsList').empty();
var website = (typeof response.d) == 'string' ? eval('(' + response.d + ')') : response.d;
if (website.length > 0) {
for (var i = 0; i < website.length; i++) {
$('#autoSuggestionsList').append($('<li/>').data('Uri', website[i].NavigationLink).click(function () {
$("#websiteUrl").text($(this).data('Uri'));
$('#suggestions').hide();
$("#autoCompleteBox").val($(this).text());
}).html(website[i].Title));
}
$('#suggestions').show();
}
}
function onRequestFail(msg) {
/// <summary>/// show error message when there is an error/// </summary>
alert(msg.d);
}
</script></head><body><formid="form1"runat="server"><div><inputid="autoCompleteBox"type="text"/><divclass="suggestionsBox"id="suggestions"style="display: none;"><ulclass="suggestionList"id="autoSuggestionsList"></ul></div><divid="websiteUrl"></div></div></form></body></html>
In the previous tutorial of CMSN Software Tutorials ("How
to call CSharp function in Ajax") jQuery section
We
explained the basic steps of calling CShaAjax request. CMSN Software
use same technique here and pass a parameter as data. Then format the response and
display it as suggestion. Response of this section is same as the CSharp
typed list so
we
can access it same as in CSharp.
We
have used following sample web service file to get suggestions via Ajax request.
In this WebService file CMSN Software decided to explain bit advance
technique to return data to client side. In the previous tutorial of CMSN Software
Tutorials ("How
to call CSharp function in Ajax") WebService
we
just return the server time as a string but in here CMSN Software shows you
how to return advance data types and access it in client side.
We
used custom type list to return website details. The type "Websites" is
a structure and it has properties to return "Title" and "NavigationLink"
of the website.
Unknown
-
what if a list of suggestion has > 100 records? It will take so long to load all records when a user enters data. How do we load > 100 records in a server cache? Thanks
Chamika Sandamal
-
Duke, you can just change the linq query in web-service to get top 10 or whatever value you want. it will solve your problem. and no point to cache the result because we are searching on each letter input(lot of search criteria). for better performance you can simply cache the xml file.
2 comments:
you can just change the linq query in web-service to get top 10 or whatever value you want. it will solve your problem. and no point to cache the result because we are searching on each letter input(lot of search criteria). for better performance you can simply cache the xml file.
Post a Comment