C# axWebBrowser用Navigate方法打开url的同时怎么post数据
MSDN对各个参数含义的说明如下:void AxWebBrowser.Navigate(
string uRL,
ref object flags,
ref object targetFrameName,
ref object postData,
ref object headers
)
看清楚是AxWebBrowser不是WebBrowser
我网上找了很多都不行
--------------------编程问答-------------------- 填postData
*****************************************************************************
签名档: http://feiyun0112.cnblogs.com/ --------------------编程问答-------------------- 能不能写一下代码啊?因为我写了不行啊
Object h = System.Text.Encoding.UTF8.GetBytes("Content-Type: application/x-www-form-urlencoded");
Object p = System.Text.Encoding.UTF8.GetBytes("userId=545&password=454");
Object o = null
axWebBrowser1.Navigate(url, ref 0, ref 0, ref p, ref h); --------------------编程问答-------------------- Object h = System.Text.Encoding.UTF8.GetBytes("Content-Type: application/x-www-form-urlencoded\r\n");
补充:.NET技术 , C#