当前位置:编程学习 > C#/ASP.NET >>

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/ --------------------编程问答--------------------
引用 楼主 seeyou8888 的回复:
MSDN对各个参数含义的说明如下:

void AxWebBrowser.Navigate(
string uRL,
ref object flags,
ref object targetFrameName,
ref object postData,
ref object headers
)

看清楚是AxWebBrowser不是WebBrowser
我网上找了很多都不行
能不能写一下代码啊?因为我写了不行啊

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#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,