CGI Redirect to another page
Andrew Dalke
adalke at mindspring.com
Wed Sep 24 00:49:04 EDT 2003
More information about the Python-list mailing list
Wed Sep 24 00:49:04 EDT 2003
- Previous message (by thread): CGI Redirect to another page
- Next message (by thread): CGI Redirect to another page
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Andrew Chalk: > Assume that I have a static HTML page that I want > displayed (e.g. index.htm). Other than 'print ...' is there any way to > redirect to this URL (for example, like Response.Redirect() in ASP)? The Response.Redirect likely works by putting something in the header. The HTML page you have doesn't have access to the header. However, you can use the meta tag to tell the browser to look elsewhere. But that won't work for tools which don't parse the HTML. It's an easy web search (once you know the right keywords :) - "header redirect meta" and I found http://vancouver-webpages.com/META/FAQ.html#redirect "How can I redirect the user to another page ?" with three different answers Andrew dalke at dalkescientific.com
- Previous message (by thread): CGI Redirect to another page
- Next message (by thread): CGI Redirect to another page
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list