在连接时提交的表单中写入
《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'];
你试试