intraweb 发布成DLL时,如何传入参数? ( 积分: 100 )

  • 主题发起人 主题发起人 wrf
  • 开始时间 开始时间
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中还需要什么其它的设置吗?或告诉我一个简单的例子,谢谢了
 
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'
其中****为页面名称
我没有在主页面调用参数,但调用子页面都行。
如我的一个页面调用:http://127.0.0.1/csin.dll/ztlmdoc?did=4152
 
接受答案了.
 
后退
顶部