Hey,
The cgi code cannot redirect to a new page.
fmt.Println("Location:
http://google.com\n")
I knew in http package, there is a function Redirect
http.Redirect(w http.ResponseWriter, r http.Request, url string,
code int)
But how can I get the http.ResponseWrite from the cgi environment?
Any sample code or tips are welcome.
Thanks,
Sammi