Search code examples
grails

Call another gsp after certain amount of time


so I want to call a certain gsp after certain amount of time

   def index()
   {
           //code here
           //after 30secs
           redirect (action :"anothergsp")
   }

Solution

  • You could add a refresh like so:

    <head>
        <meta http-equiv="refresh" content="30;url=/somewhere/else" />
        ....