reload the JSP page same like F5 key functionality

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • subha
    New Member
    • Sep 2006
    • 1

    reload the JSP page same like F5 key functionality

    Hai,
    I want to reload the My JSP page at certain time interval and get update the results automatically.i had search criteria to get the page i want to reload the JSP page and get the Upated result.

    How i can do reload the JSP page same as the funtionality Like F5 key works.

    thank you very much for your attention.
  • PLA
    New Member
    • Aug 2006
    • 44

    #2
    Originally posted by subha
    Hai,
    I want to reload the My JSP page at certain time interval and get update the results automatically.i had search criteria to get the page i want to reload the JSP page and get the Upated result.

    How i can do reload the JSP page same as the funtionality Like F5 key works.

    thank you very much for your attention.
    Code:
    <html>
    <head>
    <META HTTP-EQUIV="Refresh" CONTENT="n">
    ...
    Where n is the delay in second

    Comment

    Working...