Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

making JSP wait

Status
Not open for further replies.

zeero

Programmer
Aug 4, 2004
60
US
I was wondering if there is a way to code a JSP page to wait a few seconds before redirecting to another page.
something like:

Code:
<jsp:  "wait code here"    />
<jsp:forward page="addemployee.jsp"/>

cant use a tag, just wondering if there was a JSP method.
 
try this
Code:
<% Thread.sleep(1000) %>
<jsp:forward page="addemployee.jsp"/>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top