Hi
I have button in page index.asp. When user clicked this button , it will go to responsepage.asp. I want to show message "Thank you" for 5 sec before redirect to showlist.asp. In other word, it is somthing like when you post topic or post any answer in this forum. YOu will see message before it will redirect you to main forum. I tried this code but it does not work. It did not show message, it just redirected to showlist.asp. I want to show message message first before redirect
This is responsepage.asp
<!--#include file="connect.asp"-->
<%
Dim timeold
timeold=Timer()
response.write "Thanks you<br>"
Do Until (Timer() >= (timeold+5)) OR (Timer() < timeold)
Loop
response.redirect "showlist.asp"
%>