vb inet post 问题 下面是post 数据怎么用inet 提交?

(请求方式) POST ×× HTTP/1.1
Accept */*
Accept-Encoding gzip, deflate
Accept-Language zh-cn
Cache-Control no-cache
Connection Keep-Alive
Content-Length 182
Content-Type application/x-www-form-urlencoded
Cookie vjuids=-c964fec2.130884d225a.0.e5b81fdb79db2; vjlast=1307956814.1307956814.30; _ntes_nnid=739100a0bd64cd8babc42d497d0e00ba,0; _ntes_nuid=739100a0bd64cd8babc42d497d0e00ba; ALLYESID4=00110613172104864269889; NTES_SESS=PJkpSxOWbzVDWyt2Md3NqlWxATceP7qF.nKPi1UdwTMOrUc50rLcGw6xl4AF97ii.1VH3Kry.vWWCwlyAYWhwX7IE85J6aMpQNH3nFvycLxd5; S_INFO=1307956942|0; P_INFO=|1307956942|0||00&99|null&null&null#jix&360900#10|&0; my_posttime_0000000000600003=1307956976129
Host ×××com
Referer http://××××××.html?username=××××
User-Agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

data="***************"

第1个回答  推荐于2016-01-31
Inet1.Execute strURL, "POST",strsenddata,strSendHeader
strURL 你想发送页面的URL
strsenddata 你想发送的数据(字符串)
strSendHeader 你上面那些从Accept开始到User-Agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
都属于head吧
不过好像strSendHeader=“Content-Type application/x-www-form-urlencoded”就行了本回答被提问者采纳

vb编程,inet控件的使用,post提交数据的格式
Do While Inet.StillExecuting DoEvents Loop httpPost = Inet.GetChunk(20000)End Function 上面是一个inet post函数,这样调用:httpPost('post网址','post内容',inet控件名)如果是get的话:inet1.openurl "get的网址"你要做这个,首先你得看清楚QQ注册提交数据是post或get 要学会浏览器抓包工具.....

请教vb使用inet控件post数据的方法
用inet的execute方法把text1.text用post方式发送到指定的url去 再由那个url返回web输出内容 然后把这个输出的内容输出到label1.caption上

【VB】vb如何post提交
vb的inet、webbrowser、winsock控件都可以post 你可以在百度中搜索相应控件的post 一般要先用抓包工具得到post数据,再在程序中按样post

请教vb使用inet控件post数据的方法
Private Sub Command1_Click() Dim myurl As String, send_data As String, myhead As String myurl = "网址" send_data = "数据"my_head = "Content-Type: application\/x-www-form-urlencoded" Inet1.Execute myurl, "POST", send_data, myhead End Sub ...

高分:VB 调用INET用POST方式发图片到服务器。
winsock 可以UDP协议啊 呵呵 图片是要转为一个缓存的二进制文件 在发送 然后取出 将其内容全部读入一个byte类型的数组中,客户端代码如下:dimmyfile()asbyte dimpositionaslong open"filename"forbinaryas#1 position=0 dowhilenoteof(1)position=positon 1 redimpreservemyfile(1toposition)get#1,,my...

vb中inet的用法(连接一个ftp)
Inet1.Protocol = icFTP Inet1.RemoteHost = ServerName'服务器地址 Inet1.RemotePort = 21'FTP端口 Inet1.UserName = uName'用户名 Inet1.Password = uPWS'密码下载文件:Inet1.Execute "", "GET 1.txt d:\\1.txt"ri = Inet1.StillExecuting Do While ri ri = Inet1.StillExecuting Do...

vb中inet的用法(连接一个ftp)
Inet1.Protocol = icFTP Inet1.RemoteHost = ServerName'服务器地址 Inet1.RemotePort = 21'FTP端口 Inet1.UserName = uName'用户名 Inet1.Password = uPWS'密码下载文件:Inet1.Execute "", "GET 1.txt d:\\1.txt"ri = Inet1.StillExecuting Do While ri ri = Inet1.StillExecuting Do...

vb inet的问题 跪求大仙 本人做了提交Post的Inet5.Execute 但是state=...
Dim myPostData As String Dim myUserName As String Dim myPassWord As String myHtml = Space(1024 * 10)myUserName = "yueguang"myPassWord = "123456"'构建登录参数,这个可以从网站的登录页面上获得 myPostData = "action=login&loginid=" & myUserName & "&pwdid=" & myPassWord & "&...

vb用inet时post数据如何带上cookie?
HEADER 多项同时发送 并将这个文件以前面header发送信息设定的类型输出,从而会弹出一个下载框 \/\/ 就是把服务器上的my.jpg

请教2个inet控件编程的问题。
1、也许是你的链接没有关闭,导致VB需要等待,你要关闭你所有的用过的链接 2、 下面就是上传到带空格的目录中的方法,用引号就可以 Inet1.Execute , "PUT C:\\1.txt ""d:\/aaa bbb\/1.txt"""

相似回答