Click here to Skip to main content
15,879,535 members
Articles / Web Development / XHTML

A Working Example of Five Different Ways to Make jQuery AJAX Calls

Rate me:
Please Sign up or sign in to vote.
4.85/5 (19 votes)
2 Feb 2010CPOL7 min read 90.5K   1.5K   102  
This article introduces a working example of five different ways to make AJAX calls using jQuery.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace jQueryFiveAjaxCalls
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            lblAuthorInformation.Text = "Developed by Song Li - 01/28/2010";
        }
    }
}

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
United States United States
I have been working in the IT industry for some time. It is still exciting and I am still learning. I am a happy and honest person, and I want to be your friend.

Comments and Discussions