如何使用 ASP.net C# 将 HTTP Post 请求发送到套接字
我正在开发我的项目,并且我是 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();
}
tnx 提供帮助。
I'm developing on my project and I'm new to ASP.NET.
I want to send HTTP post request to a socket when I hit a button
here is my code.
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();
}
tnx for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用类似下面的代码来使用 POST 方法发送 HTTP 请求...
将自动创建一个套接字(服务器 + 端口)来处理服务器上的数据以处理请求。
希望这有帮助..
You could use something like the code below to send an HTTP request using POST Method...
A socket (Server + Port) will be automatically created to handle the data on the server to process the request.
Hope this helps..