Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过将 url 放入托管在 tomcat 下的当前 in java 站点中,从当前 JSP (java) 站点重定向到我的 asp.net Intranet 网站
任何建议都非常感谢。
您应该在希望发生重定向的页面上添加如下一行。(也许是 index.jsp?)
<% response.sendRedirect( "http://url.of.the.asp.page" ) ; %>