The Simple AjaxRequest
is a very easy ASP.Net tutorial by CMSN Software. In this tutorial
you can get a clear idea about basic steps to create Ajax request using ASP.Net.
Before
we
begin with the tutorial, let's discuss about technologies first. There are basically
three technologies have been used to fulfill same task that is read a text file
and show the file content without doing a post back.
you can get a better understanding on how to use
JavaScript
ASP.NET Ajax
jQuery
By going through this article you can decide what technology you will use for your
next application.
This sample shows you how to load text file content using JavaScript through
Ajax request.
<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="Default.aspx.cs"Inherits="JavaScriptSample._Default"%><!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>Simple Ajax Request</title><scripttype="text/javascript">function loadContent()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safarithis.xmlhttp = new XMLHttpRequest();
}
else
{// code 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()
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{// Display response when success.
document.getElementById("SimpleAjaxResponse").innerHTML = xmlhttp.responseText;
}
}
this.xmlhttp.open("GET", "AjaxResponse.txt", true);
this.xmlhttp.send();
}
</script></head><body><formid="SimpleAjaxRequestForm"runat="server"><div><asp:ButtonID="SimpleAjaxRequestButton"runat="server"Text="Request"/><divid="SimpleAjaxResponse"runat="server"></div></div></form></body></html>
As you can see XMLHttpRequest object is the main actor of the above tutorial.
This is the technology used in all modern browsers to exchange data with a server
to update parts of a web page without reloading the whole page. But Old versions
of Internet Explorer (IE5 and IE6) uses an ActiveXObject to do the same task.
To send a request to a server,
we
use the open(method,url,async) and send(string) methods of the XMLHttpRequest
object.
The onreadystatechange event is triggered every time when XMLHttpRequest
readyState changes.When readyState is 4 and status is 200, the response is ready
and you can access that using responseText or responseXML property
of the XMLHttpRequest object.
In this sample code
we
used ScriptManager & UpdatePanel to do the whole thing. The ScriptManager
makes sure that the required ASP.NET AJAX files are included and that AJAX support
is added to the page.The UpdatePanel allows you to wrap markup which you
would like to allow to be partially updated(updated without causing a real post
back to the server).
In this sample
we
don't have much more lines to explain. Because jQuery handled most of
the things. .ready function is used to determine when page is load. JavaScript
provides the .load event for executing code when a page is rendered. But
it does not get triggered until all assets such as images have been completely received.
jQuery.ready execute after the DOM is ready.
When DOM is ready
we
bind the .click event for the button. Inside button click event
we
call the .ajax api to load the text file content and when it success result
will display.
1 comments:
c#, dot.net, php tutorial, Ms sql server
Thanks
Post a Comment