property crlf : (ASCII character 13) & (ASCII character 10)
property redir_header : "HTTP/1.0 301 REDIRECT" & crlf & "Server: WebSTAR 4.4" & crlf & "Location: "
property redirPage: "http://www.linkedresources.com/teach/applescript/writingCGIs.shtml"
on handle CGI request
set newhtml to redir_header & redirPage & crlf & crlf -- both "crlf"s needed!
return newhtml
end handle CGI request
|