簡單ajax+webservice 例子

來源:互聯網
上載者:User

一直以為webservice只用來提供外部特殊商務服務的功能模組,所以我一直都是用ashx檔案處理後台,今天看了別人的文章恍然明白,原來webservice也可以處理ajax請求,而且一個檔案可以同時處理多個請求,和ashx方便多了,不用建立那麼檔案了。

下面是2個很簡單的例子 ,明白道理即可

HTML部分

View Code

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>無標題頁</title>
    <script type="text/javascript" src="js/jquery-1.6.1.min.js"></script>
    <script type="text/javascript">
    //第一個測試例子
    function HelloWorld()
    {
         $.ajax({
           type: "POST",
           url: "WebService.asmx/HelloWorld",
           data: "name=John",
           success: function(msg){
             alert( "Data Saved: " + msg );
           }
        }); 
    } 
    //兩數字相加
    function add()
    {
           $.ajax({
           type: "POST",
           url: "WebService.asmx/Add",
           data: "a="+$("#Text1").val()+"&b="+$("#Text2").val(),
           success: function(msg){
            
            $("#Text3").val(msg);
           }
        }); 
    
    }
 
    </script>
    
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <input id="hello" type="button" value="button" onclick="HelloWorld()" />
       
        <br />
        
        
        <br />
        NumA:<input id="Text1" style="width: 31px" type="text" />
        +NumB:<input id="Text2"style="width: 33px" type="text" onblur="add()" />
        =<input id="Text3" style="width: 33px" type="text" /></div>
    </form>
            
</body>
</html>

webservice部分

 

View Code

using System;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;

/// <summary>
/// WebService 的摘要說明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class WebService : System.Web.Services.WebService {

    public WebService () {

        //如果使用設計的組件,請取消注釋以下行 
        //InitializeComponent(); 
    }

    [WebMethod]
    public void HelloWorld() {       
        if (Context.Request["name"] != null)
        {
            Context.Response.Write(Context.Request["name"].ToString());
        }
        else
        {
            Context.Response.Write("no");
        }
    }
    [WebMethod]
    public string Hello(string name)
    {
        return string.Format("Hello {0}", name);
    }
    [WebMethod]
    public void Add()
    {
        if (Context.Request["a"] != null && Context.Request["a"] != null)
        {
         
            int anum = int.Parse(Context.Request["a"].ToString());
            int bnum = int.Parse(Context.Request["b"].ToString());
            int result=anum+bnum;
            Context.Response.Write(result.ToString());
        }
        else
        {
            Context.Response.Write("no");
        }
      
    }

    
}

 

不要忘記引用jquery.js檔案

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.