用ASP作網頁的refresh

摘要:用ASP作網頁的refresh

除了在網頁的內容加上

<meta http-equiv="refresh" content="10; url=http://www.blueshop.com.tw">

還有另一種方式就是在ASP中寫

<%
Response.AddHeader "Refresh", "10"
%>

或是

<%
Response.AddHeader "Refresh", "10;URL=http://www.blueshop.com.tw"
%>