gpt4 book ai didi

c# - 如何使用 ASP.net C# 将 HTTP Post 请求发送到套接字

转载 作者:可可西里 更新时间:2023-11-01 02:49:39 24 4
gpt4 key购买 nike

我正在开发我的项目,我是 ASP.NET 的新手。

我想在按下按钮时将 HTTP post 请求发送到套接字

这是我的代码。

protect void Button1_click(object sender, EventArgs e)
{
socket clientSocket = new Socket (addressFamily.InterNetwork, SocketType.Stream, Protocol.TCP);
clientSocket.Connect(new IPEndPont.Parse("192.168.1.1", 5550));

A = "1"; // i want to send this variable using HTTP post request

clientSocket.Send(Encoding.UTF8.Getbytes(A));

clientSocket.Close();
}

感谢帮助。

最佳答案

您可以使用类似下面的代码来使用 POST 方法发送 HTTP 请求...

会自动创建一个socket(Server + Port)来处理服务器上的数据来处理请求。

WebRequest request = WebRequest.Create(url);
request.Method = "POST";


string postData = "Data to post here"

byte[] post = Encoding.UTF8.GetBytes(postData);

//Set the Content Type
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = post.Length;
Stream reqdataStream = request.GetRequestStream();
// Write the data to the request stream.
reqdataStream.Write(post, 0, post.Length);
reqdataStream.Close();
// If required by the server, set the credentials.
request.Credentials = CredentialCache.DefaultCredentials;

WebResponse response = null;
try
{
// Get the response.
response = request.GetResponse();
}
catch (Exception ex)
{
Response.Write("Error Occured.");
}

希望这有帮助..

关于c# - 如何使用 ASP.net C# 将 HTTP Post 请求发送到套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9090913/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com