你好,我正在做一个训练程序的小应用程序。我是1天学习者:d
我想让发电机张贴在我的论坛。我创建了一个简单的生成器,现在我想让帖子从应用程序到网站。
http://localhost/web/newthread.php?fid=5 <-- Its link to post website
<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="" tabindex="1"> Its place for Title on website
<body contenteditable="true" dir="ltr" class=" placeholder"><p><br></p></body> <-- Its place for entry
<input type="submit" class="button" name="submit" value="Napisz wątek" tabindex="4" accesskey="s"> <-- Its button to post
现在…
当我在我的应用程序中点击Button5
private void button5_Click(object sender, EventArgs e)
{
}
。
转到网站链接
从"textBox1_tytul"windows应用程序在网站上放置标题
从"textBox1_output"windows应用程序进入网站
点击按钮在网站上发布
显示在我的windows应用程序警报"条目添加">
string message = "Entry addded& quot;
MessageBox.Show(message);
我是初学者,我不知道如何使它…有什么帮助吗,对不起我的英语
我认为你必须更好地使用类HttpClient。例如,我从
https://zetcode.com/csharp/httpclient/复制一段代码我的意思是你必须通过HttpClient发出Http请求。我希望我能理解你的问题并帮助你。
using System;
using System.Text;
using System.Net.Http;
using Newtonsoft.Json;
var person = new Person("John Doe", "gardener");
var json = JsonConvert.SerializeObject(person);
var data = new StringContent(json, Encoding.UTF8, "application/json");
var url = "https://httpbin.org/post";
using var client = new HttpClient();
var response = await client.PostAsync(url, data);
string result = response.Content.ReadAsStringAsync().Result;
Console.WriteLine(result);
record Person(string Name, string Occupation);