I’ve got the following piece of code in an aspx webpage:
Response.Redirect('/Someurl/');
I also want to send a different referrer with the redirect something like:
Response.Redirect('/Someurl/', '/previousurl/?message=hello');
Is this possible in Asp.net or is the referrer handled solely by the browser?
Cheers Stephen
Referrer is readonly and meant to be that way. I do not know why you need that but you can send query variables as instead of
you can call
and get what you need there, if that helps.