佚名通过本文主要向大家介绍了webbrowers,网上银行登录安全控件,activex控件下载,activex控件,activex控件被阻止等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
问题: webbrowers 控件 采用POST提交问题?
描述:
描述:
CString headers = _T("Content-Type: application/x-www-form-rlencoded\r\n");
CString postdata; //提交的数据
postdata = "mytestdate = 123456";
VARIANT vPostData = COleVariant(postdata, VT_BSTR);
VARIANT vheaders = COleVariant(headers, VT_BSTR);
CString http_path = "httP://192.168.1.81//production.aspx?";
my_browers.Navigate(http_path,NULL,NULL,&vPostData,&vheaders);//webrowers控件
为什么POST传参 网站没有获得提交的参数