I did some more browsing and I think I found a way:
I add a header in the first request (HttpWebRequest), then in the
"ProcessRequest" of my handler, I use the following. Seems to work...
If Not context.Request.Headers("UBPReverseProxy") Is Nothing Then
context.RewritePath("~/Default3.aspx")
Dim h As IHttpHandler =
PageParser.GetCompiledPageInstance("~/Default3.aspx", Nothing, context)
h.ProcessRequest(context)
Return
End If
Does it make sense?
Mike
> Hi Mike, try comparing the ResponseUri in the response to see if it's
> different?
[quoted text clipped - 14 lines]
>> Thanks.
>> Mike