天天看點

ASP.net 手機歸屬地查詢(Web Service)

利用Web服務:實作手機歸屬地查詢的功能。

項目右鍵添加web引用:

​​http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx​​ 

名稱:

ChinaMobileCode

ASP.net 手機歸屬地查詢(Web Service)

設計視圖:

ASP.net 手機歸屬地查詢(Web Service)

相關代碼:

using System.Web.Services;  //添加

protected void Button1_Click(object sender, EventArgs e)
        {
            ChinaMobileCode.MobileCodeWS myChinaMobileCode = new ChinaMobileCode.MobileCodeWS();
            string mobileCode = myChinaMobileCode.getMobileCodeInfo(TextBox1.Text.Trim(), "");
            TextBox2.Text = mobileCode;
        }      

效果(随便輸入的号碼~~):