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.
以前に開発したことのない Web サイトにいくつかの変更を加えています。context.Response.Redirect(url, true);ログインしたユーザーによって使用されたことを確認するために、go.ashx ページを介して開かれたすべてのリンク。新しいタブ?
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>
ターゲットは自分自身でなければなりません。リンクを投稿していただけると助かります。