Forum OpenACS Q&A: Re: How to avoid warning on redirect to non-secure section?

The problem is with the response redirect code.

So instead of using
Response.Redirect("http://www.yoursite.com");

use the following:

Response.clear();
Response.Write ('<meta http-equiv="refresh" content="0;url=http://jehiah.com/">');
Response.End();

Hope it helps,
Ankit