forward problem
hi ,
this is the part of my jsp -
<%
if(request.getAttribute(CRNSearcherConst.SESSION.SEARCHMASKERROR)!=null) {
String redirectURL = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"+"protected/advancedsearch.jsp?Error=true"; %>
<jsp:forward page="advancedsearch.jsp">
<jsp:param name="error" value="true"/>
<jsp:param name="problemsDef" value="<%=problemsDef%>"/>
</jsp:forward>
<% } %>
here the "if" condition is true and the request is being forwarded to the advancedsearch.jsp. i am clear with this concept. but in my browser , the advancedsearch.jsp is not shown , the current jsp is only shown with advancedsearch.jsp included init. i hope my explanation is understandable.could anyone guide me here?

