liferay之使用iframe

在某个页面中嵌入一个iframe
	<iframe id="categorylist" name="categorylist" src="${doFind}"  width="100%" height="600px" scrolling="no"></iframe>
把后台数据显示在某个iframe里面的jsp上,也就是src指向的页面
	<portlet:actionURL var="doFind" name="doFind" windowState="<%=LiferayWindowState.POP_UP.toString()%>">
		<portlet:param name="jspPage" value="/html/categorymessage/mainView.jsp"/>
	</portlet:actionURL>
后台代码
	public void doFind(ActionRequest request,ActionResponse response) {
		//查询数据库
		request.setAttribute("属性名","属性值");
	}


你可能感兴趣的:(jsp)