2014-07-15 54 views

回答

1

你只需要構建呈現jsp的render-url。

看看/portal-web/docroot/html/portlet/login/navigation/create_account.jsp是如何創建URL的。

你只需要有這個方法調用PortalUtil.getCreateAccountURL(request, themeDisplay)

所以你的JSP代碼可能是這個樣子:

<a href=<%=PortalUtil.getCreateAccountURL(request, themeDisplay)%>> Create Account </a> 

注:我沒有試過,但它應該或多或少的工作。