如何通过dsp:iframe将参数传递给iframe

时间:2016-04-29 06:14:45

标签: atg atg-dynamo atg-droplet

我想将<dsp:iframe>标记传递给src jsp。根据ATG文档,我可以使用<dsp:param>标记传递params,然后在iframe的src中使用它们的值。有人能为我提供一个如何做到这一点的例子吗?

ATG的新人

1 个答案:

答案 0 :(得分:0)

以下是一些示例代码:

<dsp:iframe page="homepage.jsp">Go to your home page
     <dsp:param name="city" beanvalue="Profile.homeAddress.city"/>
</dsp:iframe>

参数在ATG中传递任何参数时传递,并且可以检索in the same way any parameter被检索(假设您的iframe引用了应用程序中的另一个JSP。如果引用外部页面,则应从查询中检索参数字符串。

不确定您是否进行过任何研究,因为oracle commerce help已明确定义。