weve isolate d the problem to an interaction with certain firewall, proxies,
etc
usrs are able to visit this
http://test.mls.ca with no problem, but cant
accessing the live site
http://www.mls.ca
the differerence between the two is that the live site is behind a SQUID
proxy.
users have reported problems using watchguard, winproxy, freedom firewall,
etc proxies/firewalls products.
what we still dont know is what these proxies dont like about the url from
our site? we have no whitespace, no underscores in domain, its
encoded....what is it?!?
also, this is where users get stuck (get the error from proxy); anything
wrong with this code; is there any issues isth postback, redirects,
cookies..interaction between them. is this correct
Response.Redirect("~/PropertyResults.aspx" & Request.Url.Query, True) or
should we be using the full path
Response.Redirect("
http://www.mls.ca/PropertyResults.aspx" &
Request.Url.Query, True) ? pls help
Private Sub btnAccept_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles lnkAccept.Click
Dim c As New HttpCookie("LegalDisclaimer")
c.Expires = DateTime.Now.AddMonths(1)
c.Value = "1"
Response.Cookies.Add(c)
Response.Redirect("~/PropertyResults.aspx" & Request.Url.Query, True)
End Sub
thanks
stephane