The Web server is behind a load balancer . I’am doing a HttpResponse.Redirect(“anotherpage”) .
Will this redirect again go through the load balancer ? I’m confused as this is a serverside redirect , and not a redirect from the client .
I want to know this to determine if the redirected url is served by a different web server as determined by the load balancer .
HttpResponse.Redirect is not actually a server-side redirect. Setting this in the Response stream actually sends a 302 “Moved Temporarily” response to the browser, instructing it to try another URL (“anotherroute”).