我是jsp的新手,我不是英语母语人士。非常感谢你能给我一些帮助。
我的问题是:我有一个jsp,它使用easyui布局分为两部分。
在左边,有一个导航部分,我使用'for'循环创建一些链接
<%
for(Integer latestContactID :newMsgDao(conn).getLatestContacts(user.getID())){
out.println("<li><a href = \"#\">"+
new UserDao(conn).getUserByID(latestContactID).getUserName() +"</a></li>");}
%>
我希望当我点击“a”链接时,我可以根据'latesetContactID'动态加载此jsp右侧的另一个jsp。这意味着我需要传递'latestContactID'参数包括jsp。
我该怎么办?谢谢!
答案 0 :(得分:0)
<jsp:include page="(name)jsp">
<jsp:param name="myVar" value="${instanceVar}"/>
</jsp:include>
在jsp中
请参阅:Passing parameters to another JSP file using <jsp:include> tag