acromm
acromm

Reputation: 880

Is it possible to append HEADERS using Response.Redirect?

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

Upvotes: 2

Views: 3583

Answers (1)

SLaks
SLaks

Reputation: 888167

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.

Upvotes: 5

Related Questions