在 asp.net 应用程序中重定向页面时删除引荐来源网址信息
例如,我有一个重定向到 www.google.com 的应用程序。 Response.redirect 会将重定向信息发送到我不想要的外部地址。然而在内部,我想访问推荐人信息。有什么办法可以删除该信息。将使用 window.location = 'www.google.com' 从 javascript 重定向;帮助 ??
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 information. Will redirecting from javascript using window.location = 'www.google.com'; help ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信如果您在新窗口中启动 URL,引荐来源网址将会被删除。在 JavaScript 中,它将利用 window.open(...) 函数。
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.