cs代码:

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

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
       

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        WebRequest req = WebRequest.Create("http://sms.api.bz/fetion.php?username=" + 你的号码 + "&password=" + 你的飞信密码 + "&sendto=" + 对方号码 + "&message=" + message.Text);
        req.Method = "GET";
        req.GetResponse();
        message.Text = "";
        Response.Write("<script>alert('信息已成功发送!')</script>");
    }
}

 

 

前台代码:

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>飞信接口测试</title>
</head>
<body>
    <form /></div>
    </form>
</body>
</html>

 

 

相关文章:

  • 2022-01-01
  • 2021-11-06
  • 2022-12-23
  • 2021-12-03
  • 2021-11-16
  • 2021-06-16
  • 2022-02-07
  • 2022-01-14
猜你喜欢
  • 2021-12-20
  • 2021-08-01
  • 2022-01-23
  • 2022-02-25
  • 2022-01-18
  • 2022-12-23
相关资源
相似解决方案