Can you use the formBean?
Something like pgForm.getPrint(); // i am not sure though

or
you can try this.
Declare Print as a hidden variable in the jsp page. That way i think
you will be able to access the variable.

<html:hidden property="Print" />
try this. I hope that works.

Uday

On 9/26/06, Vinod Kumar <[EMAIL PROTECTED]> wrote:
I am not able to get the value of the request
parameter using request.getParameter("Print")
I am trying to get this value in the layout-tiles.jsp
file.
I use this URL to make the call
http://localhost/appname/jsp/login.jsp?print=1

below are the two files. Any help will be appreciated.


***********start of layout-tiles.jsp**************

<%

String  printParm1 = request.getParameter( "print" );

System.out.println("printParm1 = "+printParm1);
%>

%>

<html:html>
<head>

        <title><tiles:insert attribute="title"/></title>

        <%@ include file="include/printable.jsp" %>

        <tiles:insert attribute="head"/>


</head>

<body>


<tiles:insert attribute="top"/>


<tiles:insert attribute="content"/>

<tiles:insert attribute="bottom"/>

</body>
</html:html>
**********end of layout-tiles.jsp****************

**********start of login.jsp*********************
<tiles:insert page="layout-tiles.jsp" flush="true">
        <tiles:put name="head" value="head.jsp"/>
        <tiles:put name="top" value="top.jsp"/>
        <tiles:put name="bottom" value="bottom.jsp" />
        <tiles:put name="title"
value="htmlHeader.jsp?htmlHeader=login.title&pageTitle=login.page.title&thisPage=login.jsp"
/>
    <tiles:put name="content" value="login-body.jsp"/>
</tiles:insert>
*********end of login.jsp************************

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
Never explain--your friends do not need it and your enemies will not
believe you anyway--Elbert Hubbard

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to