提交按钮 C#

发布于 2024-10-28 23:54:49 字数 357 浏览 0 评论 0原文

因此,我正在使用 Microsoft Visual 2008 Express 版本开发一个适用于 Windows 的应用程序。我是编码新手,我正在使用我正在使用的应用程序的指南。现在,我想在“提交”按钮上使用 GetElementById 函数。我正在制作一个自动填充抽奖活动的程序。表格填写正确,但无法提交信息。 Firebug 向我显示了该按钮的代码

<input type="submit" class="submit standard-button" value="Submit"/>

我该如何模拟以便它在我填写的表单上输入数据?其他一切正常,我的程序只是没有点击网页上的“提交”按钮。

谢谢!

So I'm developing an APP for windows using the Microsoft Visual 2008 Express edition. I'm new to coding and I'm using a guide for the application I'm using. Now, I want to use GetElementById function on a Submit button. I'm making a program that autofills sweepstakes. It fills in the forms correctly, but fails to Submit the information.
Firebug shows me this code for the button

<input type="submit" class="submit standard-button" value="Submit"/>

How do i simulate so it enters the data on the form i filled out? Everything else works out ok, my program just doesn't hit the SUBMIT button on the webpage.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的那么颓废 2024-11-04 23:54:49

你真正想要做的是获取表单,然后调用submit(),然后提交带有数据的表单。

What you really want to do is get the form and then call submit() on that which will then submit the form with the data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文