c# windows form - 单击按钮后如何在网站上添加条目

问题描述

你好,我正在为我的培训编程做一个小应用程序。我是 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)
    {

    }

想要。

  1. 转到链接链接到发布网站)

  2. 将文本从“textBox1_tytul”Windows 应用复制到网站上的标题

  3. 将文本从“textBox1_output”windows 应用复制到 Place 以便在网站上输入

  4. 点击按钮在网站上发布

  5. 在我的 Windows 应用中显示警报“已添加条目”

    string message = "条目已添加";
    MessageBox.Show(message);

我是初学者,我不知道如何制作...任何帮助,对不起我的英语

解决方法

我认为您必须更好地使用类 HttpClient。 例如我从
复制一段代码 https://zetcode.com/csharp/httpclient/ 我的意思是您必须通过 HttpClient 发出 Http 请求。 我希望我能理解你的问题并帮助你

             hmap.put(mapping[0],mapping[1]);