AJAX Forums

Tutorial: Introduction to AJAX in ASP.NET 2.0 and VB

This is a discussion on Tutorial: Introduction to AJAX in ASP.NET 2.0 and VB within the AJAX Articles forums, part of the Beginners AJAX category; AJAX, short for Asynchronous JavaScript And XML, isn't a technology but rather a grouping of technologies. AJAX uses a communication technology (typically SOAP and XML) to send and receive ...


Go Back   AJAX Forums > Beginners AJAX > AJAX Articles

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
Old 07-24-2008, 04:07 PM   #1 (permalink)
Junior Member
 
Join Date: Jul 2008
Posts: 1
Rep Power: 0 commando is on a distinguished road
Tutorial: Introduction to AJAX in ASP.NET 2.0 and VB

AJAX, short for Asynchronous JavaScript And XML, isn't a technology but rather a grouping of technologies. AJAX uses a communication technology (typically SOAP and XML) to send and receive an asynchronous request/response to the server, and then leverages presentation technologies (JavaScript, DOM, HTML, and CSS) to process the response. Applications using AJAX are legitimate today, because most browsers support the necessary technology.

First thing we need to do is to import the AJAX namespace from Ajax.DLL.The Ajax namespace contains Ajax.dll encapsule Asynchronous Javascript and XML in Bin folder. This is an combination of Javascript and XML. The data is transfered in the form of XML.

Imports Ajax
Imports System.Data.SqlClient
Imports System.Data


In this tutorial, the only configuration step beyond that is to add the following code in the web.config file, inside the <system.web> element.


<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax"/>
</httpHandlers>


Orginally posted at ajaxtutorials.com
commando is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes


Similar Threads

Thread Thread Starter Forum Replies Last Post
ColdFusion AJAX Tutorial 1: Auto-Suggest microbee AJAX Help 0 06-01-2007 12:44 AM
CSS styleswitcher tutorial Anonymouse XHTML and CSS 2 04-15-2007 09:18 AM
AJAX Tutorial on Oracle.com microbee AJAX Help 0 01-28-2007 05:18 PM
AJAX Tutorial on Oracle.com microbee AJAX Help 0 01-27-2007 09:41 PM
AJAX Tutorial on Oracle.com microbee AJAX Help 0 01-26-2007 03:19 PM


All times are GMT -4. The time now is 07:01 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5
Copyright ©2006 - 2008, AJAXwith.com