主题:out.close()到底有什么运用?
<%@page contentType="text/html;charset=GBK"%>
<%
out.print("hello");
out.newLine();
out.write("hello");
%>
<br>
<%="hello"%>
<%
out.close();
%>
<%
response.sendRedirect("TEST.jsp");
为什么 跳转不到 TEST.jsp
把 <%
out.close();
%>
去掉,就可以了
为什么,??问下,
通常 out.close(); 都放那里,有些什么作用
还有一个问题:
response.sendRedirect("TEST.jsp"); 这个跳转 是连地址也改变的,为什么在我机器上运行,
地址没有改变???
<%
out.print("hello");
out.newLine();
out.write("hello");
%>
<br>
<%="hello"%>
<%
out.close();
%>
<%
response.sendRedirect("TEST.jsp");
为什么 跳转不到 TEST.jsp
把 <%
out.close();
%>
去掉,就可以了
为什么,??问下,
通常 out.close(); 都放那里,有些什么作用
还有一个问题:
response.sendRedirect("TEST.jsp"); 这个跳转 是连地址也改变的,为什么在我机器上运行,
地址没有改变???