再加100分,请教idhttp.post中参数设定(100分)

  • 主题发起人 主题发起人 ranxg
  • 开始时间 开始时间
R

ranxg

Unregistered / Unconfirmed
GUEST, unregistred user!
http://www.delphibbs.com/delphibbs/dispq.asp?lid=3533864
中(150分),只是
idhttp.post('http://www.xx.com/xx.asp',Logininfo,Response);....
的Logininfo,Response不会设定。
我只想将edit1.text内容通过post
使xx.asp将sdf.txt内容更新!
我弄的每次结果sdf.txt被清空
代码都在那个帖子上!
 
如果只是上传字符串,用get比post效率高而且简单啊。给个例子
下面的语句向网页提交了 “hello”和“dog”两个字符参数,多个参数用&符号隔开
shellexecute(handle,'open',pchar('http://www.finer2.com/Catalog2/vupdate.asp?key=hello&name=dog'),nil,nil,sw_shownormal);
下面的asp代码接收并显示这两个参数:
<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>
<html>
<head>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;>
<title>最新版本</title>
</head>

<body>
<p><%=Request(&quot;key&quot;)%></p>
<p><%=Request(&quot;name&quot;)%></p>
</body>
</html>
 
谢谢,分是你的了!!能帮我改一下代码更好!
一小时内结帐!
 
我来领分了
 
首先把上面我贴的网页代码保存到一个文本文件内,更名为 vupdate.asp 上传到你的网站上。

然后要注意uses shellapi单元,在程序内执行下面的语句,就可以看到网页上显示了这两个参数了
shellexecute(handle,'open',pchar('http://www.你的网站.com/vupdate.asp?key=hello&name=dog'),nil,nil,sw_shownormal);
 
多人接受答案了。
 
后退
顶部