tags:

views:

68

answers:

1

Can I make a Response.Redirect modifying the headers of that "request (¿) "

+3  A: 

There is no way to send a redirect and make the browser add headers to its HTTP request for the page you redirected to.

However, look at Server.Transfer.

SLaks