提交按钮 C#
因此,我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你真正想要做的是获取表单,然后调用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.