Link to home
Start Free TrialLog in
Avatar of RajeshPD
RajeshPD

asked on

Transferring Control using Timer

you can simply use meta tag in html <head> section
<META HTTP-EQUIV=Refresh CONTENT="300; URL=page3.jsp">
or use:
<% response.setHeader( "Refresh", "300; URL=page3.jsp" ); %>


Correct, it transfers for a JSP but gives an error if i use servlet

description The specified HTTP method is not allowed for the requested resource (HTTP method GET is not supported by this URL).

Pls help
ASKER CERTIFIED SOLUTION
Avatar of kennethxu
kennethxu

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial