Results 1 to 3 of 3

Thread: ASP.Net - How do I add an AJAX Form to my Web Application?

  1. #1

    Thread Starter
    ASP.NET Moderator gep13's Avatar
    Join Date
    Nov 2004
    Location
    The Granite City
    Posts
    21,963

    ASP.Net - How do I add an AJAX Form to my Web Application?

    The answer to this question really depends on which version of Visual Studio you are using.

    Visual Studio 2005
    This is achieved by using the AJAX Enabled Web Application Template from within the New Project Dialog.

    // TODO: Need to add an image here, however, don't have Visual Studio 2005 Installed

    This will then add all the necessary references that are required to begin creating an AJAX Enabled Web Application.

    Visual Studio 2008
    The AJAX Enabled Web Application Template no longer exists in Visual Studio 2008, but rather, you are able to add an AJAX Web Form to any Web Application that you are currently using. This is achieved by:

    • Right click on your project
    • Select Add | New Item
    • In the Add New Item Dialog Select "Web" under Categories
    • Select AJAX Web Form under Templates


    Name:  Add New Item.png
Views: 2446
Size:  63.4 KB

    This will now add all the necessary references that are required for adding AJAX functionality to your page.

  2. #2
    PowerPoster abhijit's Avatar
    Join Date
    Jun 1999
    Location
    Chit Chat Forum.
    Posts
    3,226

    Re: ASP.Net - How do I add an AJAX Form to my Web Application?

    What's the difference between an AJAX Web Form and AJAX Server Control?

    In VS 2010 beta, I can see the AJAX Server Control and the AJAX Server Control Extender.
    Everything that has a computer in will fail. Everything in your life, from a watch to a car to, you know, a radio, to an iPhone, it will fail if it has a computer in it. They should kill the people who made those things.- 'Woz'
    save a blobFileStreamDataTable To Text Filemy blog

  3. #3

    Thread Starter
    ASP.NET Moderator gep13's Avatar
    Join Date
    Nov 2004
    Location
    The Granite City
    Posts
    21,963

    Re: ASP.Net - How do I add an AJAX Form to my Web Application?

    Hey,

    An AJAX Server Control is just that, it is an ASP.Net Server Control that has built in AJAX functionality. Once created, you can drag it onto an AJAX Web Form in the same way you drag Server Controls that you have created onto a Web Form's surface.

    There is a video here that talks you through how to create one:

    http://www.asp.net/(S(wnmvzu45umnszm...video-170.aspx

    ASP.NET AJAX extender controls enhance the client capabilities of standard ASP.NET Web server controls.
    You can find more information about this here:

    http://msdn.microsoft.com/en-us/library/bb470384.aspx

    And you can find a real world example here:

    http://weblogs.asp.net/pglavich/arch...-your-own.aspx

    Gary

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width