Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 HttpWebRequest 访问页面。那是有效的。但我需要单击此页面上的两个表单提交按钮之一。每个按钮都有唯一的名称和 id 值。表单标签没有指定 URL。但我知道手动单击按钮可以正常工作。
任何想法如何做到这一点?
您需要弄清楚作为按钮单击(字段名称和值)的一部分的处理脚本(表单操作)期望什么以及要使用的 http 方法(GET、POST 等) - 然后构造一个适当的 HttpRequest。
Fiddler 可以极大地帮助解决所有这些问题。