W
wrf
Unregistered / Unconfirmed
GUEST, unregistred user!
intraweb 发布成DLL时,如何传入参数?
如http://127.0.0.1/webcx.dll?userno='12345'
在exe的程序中
procedure TIWloginForm.IWAppFormRender(Sender: TObject);
begin
IWLabel1.Caption:=WebApplication.Request.QueryFields.Values['USERNO'];
end;
可以得到12345的值,但是在DLL下无法得到
请问,在DLL中还需要什么其它的设置吗?或告诉我一个简单的例子,谢谢了
如http://127.0.0.1/webcx.dll?userno='12345'
在exe的程序中
procedure TIWloginForm.IWAppFormRender(Sender: TObject);
begin
IWLabel1.Caption:=WebApplication.Request.QueryFields.Values['USERNO'];
end;
可以得到12345的值,但是在DLL下无法得到
请问,在DLL中还需要什么其它的设置吗?或告诉我一个简单的例子,谢谢了