0

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.

0cool
  • 683
  • 2
  • 10
  • 27

1 Answers1

0

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
  • 913
  • 5
  • 10