A Ajax. Net Quick Guide how to start

Source: Internet
Author: User
Document directory
  • A Quick Guide how to start
Ajax. Net professionala Quick Guide how to start

Because I cocould not write a documentation I will show you here how to start:

  • Download the latest Ajax. Net professional files from www.schwarz-interactive.de
  • Add a reference to the ajaxpro.2.dll (for the. NET 1.1 framework use ajaxpro. dll)
  • Add following lines to your web. config:
<?xml version="1.0" encoding="utf-8" ?><configuration>  <system.web>      [...]  </system.web></configuration>
  • Now, you have to mark your. Net methods with an ajaxmethod attribute:
[AjaxPro.AjaxMethod]public DateTime GetServerTime(){  return DateTime.Now;}
  • To use the. Net Method on the client-side JavaScript you have to register the methods, this will be done to register a complete class to Ajax. Net:
namespace MyDemo{  public class _Default  {    protected void Page_Load(object sender, EventArgs e)    {      AjaxPro.Utility.RegisterTypeForAjax(typeof(_Default));    }    [AjaxPro.AjaxMethod]    public DateTime GetServerTime()    {      return DateTime.Now;    }  }}
  • If you start the web page two JavaScript provided des are rendered to the HTML source.
  • To call a. Net method form the client-side JavaScript code you can use following syntax:
function getServerTime(){  MyDemo._Default.GetServerTime(getServerTime_callback);  // asynchronous call}// This method will be called after the method has been executed// and the result has been sent to the client.function getServerTime_callback(res){  alert(res.value);}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.