C# API接口使用样例

C# CODE:

aspx:
<%@ Page Language=”C#” AutoEventWireup=”true”  CodeFile=”Default.aspx.cs” Inherits=”_Default” %>

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>

http://www.w3.org/1999/xhtml” >

短讯发送











cs:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Net;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page{

protected void send_Click(object sender, EventArgs e)
{
string num = tel.Text;
string contents = content.Text;
string url = “
https://sms.api.bz/fetion.php?username=13800000000&password=00000000000000&sendto=” + num + “&message=” + contents;
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
req.Method = “GET”;
using (WebResponse wr = req.GetResponse())
{
Response.Write(”短信发送成功!”);
}
}
}

 

你可能感兴趣的:(C#winform编程)