Remove referrer information while redirecting page in asp.net application
For example, i have an application which redirects to www.google.com. Response.redirect will send the redirect information to the external address which i dont want. However internally, i want to access the referrer information. Is there any way to remove that i开发者_开发百科nformation. Will redirecting from javascript using window.location = 'www.google.com'; help ??
I believe the referrer will get removed if you launch the URL in a new window. In JavaScript that would leverage the window.open(...) function.
精彩评论