掲示板

Using two jsps in one liferay Portlet

12年前 に Rafiq Uz Zama によって更新されました。

Using two jsps in one liferay Portlet

Junior Member 投稿: 30 参加年月日: 11/11/25 最新の投稿
Hi ,

I need to use 2 jsps in a portlet.
Currently i am using view.jsp of a portlet for database interaction but i need to display a custom message after submitting form to database.
So need help for this thing?
Used RequestDispatcher too?

Regards,
Rafiq
12年前 に Rafiq Uz Zama によって更新されました。

RE: Using two jsps in one liferay Portlet

Junior Member 投稿: 30 参加年月日: 11/11/25 最新の投稿
If you are redirecting from view.jsp to any other jsp say check.jsp then follow these::::::

1) redirecting to another jsp with parameter
Add the following code
<portlet:renderURL var="check">
<portlet:param name="jspPage" value="/check.jsp" />
</portlet:renderURL>
<a href="<%=check%>&abc%></a>

2) add request.getParameterNames(); in check.jsp and retrieve all parameters

Regards,
Rafiq Uz Zama
thumbnail
12年前 に Juhi Kumari によって更新されました。

RE: Using two jsps in one liferay Portlet

Expert 投稿: 347 参加年月日: 11/12/12 最新の投稿
Hi Rafiq,
I think in your view.jsp you are submitting a form, for that you are calling a action. To display the success message in check.jsp, you can set
viewJSP = "/html/portlet/check.jsp"; in your render method.

Regards
Juhi
thumbnail
12年前 に Hitoshi Ozawa によって更新されました。

RE: Using two jsps in one liferay Portlet

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Currently i am using view.jsp of a portlet for database interaction


If you're posting to a database from view.jsp, your portlet will submit everytime an user refreshes the page.
12年前 に Rafiq Uz Zama によって更新されました。

RE: Using two jsps in one liferay Portlet

Junior Member 投稿: 30 参加年月日: 11/11/25 最新の投稿
Hi Ozawa,

Thanks for replying..
my form is in view.jsp and i have submit button in it and after clicking submit itself, it redirects to check.jsp(in this case).

Thanks and Regards,
Rafiq