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.
C#でResponse.Redirectを使用して、新しいウィンドウまたは新しいブラウザでページを開く方法を誰か提案できますか? 私は使用しました: Response.Redirect("page1a.aspx");
ただし、既存のタブで開いています。
はいの場合はJavaScriptを使用できますか?これを試してください
Response.Write("<script>"); Response.Write("window.open('ClickPicture.aspx','_blank')"); Response.Write("</script>");