Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对以前没有开发过的网站进行了一些更改。通过 go.ashx 页面打开的所有链接以验证它是否已被登录用户使用.. 当 .ashx 验证用户时打开 URL 通过context.Response.Redirect(url, true);这会打开一个新选项卡,我如何使它只是一个没有新标签?
context.Response.Redirect(url, true);
我认为问题可能出在链接上
<a href="target URL" target="new">anchor text</a>
甚至
<a href="target URL" target="_blank">anchor text</a>
它应该像
<a href="target URL" target="_self">anchor text</a>
目标应该是自己。如果您可以发布您的链接,那么它可能会有所帮助。