Multiple params with html:link tag

来源:互联网 发布:windows 7系统激活工具 编辑:程序博客网 时间:2024/05/16 19:39

question:

How to code my Struts html:link tag such that I can apply multiple dynamic parameters?

For example, I want to achieve the following:

<a href="/DeptInfo/do/ViewDept?setID=<%=deptForm.getSetID()%>&<%=deptForm.getDeptID%>">

But I only know this much in terms of coding it with a Struts tags:

<html:link forward="ViewDept" paramName="deptForm" paramProperty="setID" paramId="setID" />

How do I get the deptID param into this tag as well? (And by the way, is my syntax above correct for the html:link tag??

 

solution:

 <html:html>
....

<bean:parameter id="param1" name="param1" value="0"/>

<% 

    java.util.HashMap params = new java.util.HashMap();
params.put("param1", param1);
params.put("param2","param2Value");
pageContext.setAttribute("paramsName", params);
%>

<html:link page="/show.do" name="paramsName" scope="page" >show.jsp</html:link>

.....
.....
</html:html>
========================================================

原创粉丝点击