如何POST表单? (100分)

  • 主题发起人 主题发起人 zxp_ping
  • 开始时间 开始时间
Z

zxp_ping

Unregistered / Unconfirmed
GUEST, unregistred user!
其实就象登录网页邮箱差不多。
我想做成效果如下:
1.直接打开IE,把数据用IE提交到网页,然后打开网页。
2.如果第1点实现麻烦的话,就用WEBBROWER控件好了,实现效果也是打开提交数据后的网页
表单内容如下:
<body>
<form name="form1" method="post" action="http://www.xx.com/log1.asp">
序号: 
<input name="id" type="text" id="id">
<br>
名称:
<input name="name" type="text" id="name">
<br>
区别:
<input name="qb" type="text" id="qb">
<br>
<input type="submit" name="Submit" value="提交">
</form>
</body>
 
WebBrowser1.oleobject.Document.body.Scroll := 'no';
WebBrowser1.OleObject.Document.Form1.id.value := 123;
WebBrowser1.OleObject.Document.Form1.name.value := 'Cooling';
WebBrowser1.OleObject.Document.Form1.qb.value := 'I'm a boy.';
WebBrowser1.OleObject.Document.Form1.submit();
 
Open this page with WebBrowser1 at first
 
提示:找不到成员。.
奇怪了。。
前面的赋值是正常的,只是后面那条:submit()出错。
BTW:
webbrower的Navigate好象可以直接把post的数据传进去,不知有没哪位富翁用过?
 
我用navigate已经解决。同时还是得谢谢楼上兄弟。
 
后退
顶部