E enjoymyself Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-20 #1 jsp中页面需要经由过程页纸另一页面, 使用Java script的window.locatio.href 并不能起到刷新页面, 读出的页面可能还是历史纪录,求解!
王 王福川 Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-20 #2 用下面这个html语句: <meta http-equiv="refresh" contant="time:url"> 在time上填入你的刷新时间,在url位置上填入你调用的 url.
E enjoymyself Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-21 #3 用refresh 方式是不够的,因为时间的设定并不统一, 在jsp中,应使用forword方法即可.
A alum Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-21 #4 <pre> jsp没接触过,但是php/asp了解一点点 asp: response.redirect "a.asp?mark="&now() php: header("location:a.php3?mark=".data("Ymdhis")); 这样就可以迫使浏览器读取服务器的页面了。。 不知jsp是否如此。。见笑见笑。 </pre>
<pre> jsp没接触过,但是php/asp了解一点点 asp: response.redirect "a.asp?mark="&now() php: header("location:a.php3?mark=".data("Ymdhis")); 这样就可以迫使浏览器读取服务器的页面了。。 不知jsp是否如此。。见笑见笑。 </pre>
Y youtoo Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-21 #5 同意enjoymyself的意见, <jsp forward url...>
A alum Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-21 #6 废X,enjoymyself不就是提问者么。。 Java script的window.locatio.href其实也行,如: //asp 啦。。 window.location="a.asp?mark=<%=now()%>";
废X,enjoymyself不就是提问者么。。 Java script的window.locatio.href其实也行,如: //asp 啦。。 window.location="a.asp?mark=<%=now()%>";
Y yzhu Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-22 #7 可以用 HTML: &lt;META HTTP-EQUIV=&quot;Refresh&quot; CONTENT=&quot;n; URL=login.jsp&quot;&gt; 或 JSP: 1. response.sendRedirect(URL_Str); 2. &lt;jsp:forward URL=&quot;&lt;URL_Str&gt;&quot;&gt;
可以用 HTML: &lt;META HTTP-EQUIV=&quot;Refresh&quot; CONTENT=&quot;n; URL=login.jsp&quot;&gt; 或 JSP: 1. response.sendRedirect(URL_Str); 2. &lt;jsp:forward URL=&quot;&lt;URL_Str&gt;&quot;&gt;
Z zhouhe Unregistered / Unconfirmed GUEST, unregistred user! 2000-09-27 #9 jsp中重定向的语句是: response.sendRedirect(response.encodeRedirectUrl("你的url"));