websnap中如何取道url中的值? ( 积分: 20 )

  • 主题发起人 主题发起人 wbf810207
  • 开始时间 开始时间
W

wbf810207

Unregistered / Unconfirmed
GUEST, unregistred user!
例如要取到 projiect.dll?no=....
中的no的值应该用什么方法啊?
 
例如要取到 projiect.dll?no=....
中的no的值应该用什么方法啊?
 
在连接时提交的表单中写入
《Form action="scripts/project1.dll/check?vname=name&vpassword=password"
method="post"》
在你的名为xg的Isapi dll的pathinfo 为/check的Action中必须有这样的语句:
case Request.MethodType of
mtPost:
stgURLData:=Request.ContentFields;
mtGet:
stgURLData:=Request.QueryFields;
end;
sUserName:=stgURLData.Values['vname‘];
sUserPaswd:=stgURLData.Values['vpassword'];

你试试
 
“在你的名为xg的Isapi dll的pathinfo 为/check的Action中必须有这样的语句:”
是什么意思啊?
 
后退
顶部