Click here to Skip to main content
15,885,216 members
Articles / Web Development / HTML

An Introduction to AJAX Techniques and Frameworks for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.90/5 (150 votes)
24 Aug 2006CPOL21 min read 534.3K   2.5K   487  
This article introduces AJAX to ASP.NET developers, implementing an example web page in different ways using ASP.NET Atlas, ASP.NET callbacks, Ajax.Net, Anthem.Net, and MagicAjax.Net.
<%@ WebService Language="C#" Class="WarehouseService" %>
using System;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;


/// <summary>
/// Summary description for StockService
/// </summary>
[WebService(Namespace = "http://www.atlasinaction.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class WarehouseService : System.Web.Services.WebService {

    public WarehouseService () {

        //Uncomment the following line if using designed components 
        //InitializeComponent(); 
    }

    [WebMethod]
    public int GetItemQuantity(string itemID) 
    {
        return Warehouse.GetItemQuantity(itemID);
    }
    

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions