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 an ...
|
|||||||
|
|
#1 (permalink) |
|
Junior Member
Join Date: Jul 2008
Posts: 1
Rep Power: 0 ![]() |
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 |
|
|
|
| Sponsored Links | |
|
|
#3 (permalink) |
|
Junior Member
Join Date: May 2009
Posts: 5
Rep Power: 0 ![]() |
Thanks for sharing AJAX in ASP.NET 2.0 and VB on AJAX in ASP.NET 2.0 and VB
__________________
psd to xhtml/html conversion | debt consolidation alternative | used office furniture |
|
|
|
|
|
#4 (permalink) |
|
Junior Member
Join Date: May 2009
Posts: 5
Rep Power: 0 ![]() |
Thanks for sharing information about AJAX in ASP.NET 2.0 ......
__________________
psd to xhtml/html conversion | debt consolidation alternative | used office furniture |
|
|
|
![]() |
| Bookmarks |
|
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ColdFusion AJAX Tutorial 1: Auto-Suggest | microbee | AJAX Help | 0 | 05-31-2007 11:44 PM |
| CSS styleswitcher tutorial | Anonymouse | XHTML and CSS | 2 | 04-15-2007 08:18 AM |
| AJAX Tutorial on Oracle.com | microbee | AJAX Help | 0 | 01-28-2007 04:18 PM |
| AJAX Tutorial on Oracle.com | microbee | AJAX Help | 0 | 01-27-2007 08:41 PM |
| AJAX Tutorial on Oracle.com | microbee | AJAX Help | 0 | 01-26-2007 02:19 PM |