頁面刷新問題
我的一個頁面order.asp,我想20秒鐘刷新一次頁面,以取得最近正確的資料,然而當刷新頁面的時候,出現"要重新整理網頁,必須重新傳送資訊.按[重試]會再次傳送資訊,或者按[取消]回到要檢視的頁面"這個警告框,如何不要讓它出現.其中order.asp的代碼如下
注;Request.Form("ctype")是上個頁面頁面提交的資料,我的代碼哪里有問題
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html;charset=big5">
<meta http-equiv="Refresh" content="20,Url=order.asp">
<TITLE>弘一美訂單系統</TITLE>
</HEAD>
<body background="gray.jpg" vlink="#000000" leftMargin="0" link="#000000" topMargin="10" marginheight="0" marginwidth="0" alink="#666666" >
<!--#include file="head.htm"-->
<HR>
<CENTER>
<%
on error resume next
psize=10
xx=Request.Form("ctype")
.....
%>
</BODY>
<%
rst.Close
set rst=nothing
rstobj.Close
set rstobj=nothing
%>
</HTML>