如何在具有帖子数据的浏览器中直接打开页面
本文关键字:浏览器 数据 | 更新日期: 2023-09-27 17:59:02
我们可以直接在浏览器中使用查询字符串(GET数据)打开页面。有没有任何方法可以直接在具有POST DATA的浏览器中打开页面。
使用WebBrowser控件打开包含帖子数据的url:
string url = "http://example.com";
string postData = "param1=value1¶m2=value2¶m3=value3";
byte[] Post = Encoding.UTF8.GetBytes(postData );
string AdditionalHeaders = "Content-Type: application/x-www-form-urlencoded";
//wbSample is the web browser control
//the WebNavigate method is just a simple method i created
//which simply assigns url to the browser, the post data and additional headers
WebNavigate(wbSample , ListURL, "", Post, AdditionalHeaders);