views:

10

answers:

1

Hi,

I wants to redirect to my asp.net intranet website from current JSP (java) site by putting a url in my current in java site hosted under tomcat

Any suggestion really appreciated.

A: 

You should put a line as follows on the page you want the redirection to happen. (Maybe index.jsp?)


<%
response.sendRedirect( "http://url.of.the.asp.page" ) ;
%>

xycf7