简体   繁体   中英

How to Redirect ot my asp.net intranet website from current JSP(java) Site

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.

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" ) ;
%>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM