A
amenglai
Unregistered / Unconfirmed
GUEST, unregistred user!
我要在WebActionItem的响应中根据不同的请求值,返回不同的page
代码如下,但是如果这样写就会在浏览器端报错:
EAccess Exception
procedure TWebModule1.WebModule1WebActionItem1Action(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
begin
if 满足条件1 then
response.content:=pageproducer2.Content
else
response.content:=pageproducer1.Content;
end;
我要问的问题是如何在同一个WebActionItem的响应中返回不同的pageproducer
我的分数不多了,所以就给了50分,但是这并不代表这个问题简单,
先谢过了。
代码如下,但是如果这样写就会在浏览器端报错:
EAccess Exception
procedure TWebModule1.WebModule1WebActionItem1Action(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
begin
if 满足条件1 then
response.content:=pageproducer2.Content
else
response.content:=pageproducer1.Content;
end;
我要问的问题是如何在同一个WebActionItem的响应中返回不同的pageproducer
我的分数不多了,所以就给了50分,但是这并不代表这个问题简单,
先谢过了。