You could try something along this line:
// usage: SafeRedir("http://my-friendly-url");
void SafeRedir(string URL)
{
Response.Buffer = true;
Response.Status = "302 Object moved";
Response.AddHeader( "Location", URL );
Response.Write ("<HTML><Head>");
Response.Write ( "<META HTTP-EQUIV=Refresh CONTENT=\"0;URL=" + URL + "\">");
Response.Write ( "<Script>window.location='" + URL + "';</Script>" );
Response.Write("</Head>");
Response.Write ("<Body> This page was moved <A Href=\"" + URL +
"\">here</A>");
Response.Write("</HTML>");
}

Signature
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
> I have set up an HttpModule that creates friendly urls and utilizes
> RewritePath. Such a url looks like
[quoted text clipped - 8 lines]
> Thanks
> Ashok Padmanabhan DVM