CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 1999
    Posts
    47

    Redirectioning to other web page from a CGI script

    I have i CGI script that prints some information. I want the user to be redirected to other web page (index.shtml) after 2, 3 or more seconds.
    How can I do that ?


  2. #2
    Join Date
    Jun 1999
    Posts
    17

    Re: Redirectioning to other web page from a CGI script

    Add meta tag refresh with number of seconds, for example following code will make browser refresh window in 5 seconds

    <html>
    <head>
    <title>title</title>
    <meta http-equiv=REFRESH CONTENT="5; URL=default.asp">
    </head>
    <body bgcolor="#FFFFFF">body


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured