Link to home
Start Free TrialLog in
Avatar of mikesung99
mikesung99

asked on

Using <jsp:forward> to open Page in New window

Hi,

I'm experimienting with using <jsp.foward> to navigate to another page (and pass over some attributes). The following is a snippet of the code that I've been testing:-

            %>
             <jsp:forward page="DailyBarChart.jsp">
                    <jsp:param name="DailyStats"
                     value="<%= DailyStats %>" />                  
                    <jsp:param name="sCurrentDate"
                     value="<%=sCurrentDate %>" />
            
             </jsp:forward>
            <%


The above code works fine in that it will open up DailyBarChart.jsp in the same browser instance (and pass over the two attributes of DailyStats and sCurrentDate).

 However, I would like to open up the page in a seperate window - Is this possible - I've searched the various forums and web but I cannot as yet find anything to point me in the right direction.


Many Thanks

Michael

Avatar of mikesung99
mikesung99

ASKER

Just to clarify, I need to open up the DailyBarChart.jsp page in a new window and also pass over the 2 attributes.
ASKER CERTIFIED SOLUTION
Avatar of rrz
rrz
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial