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.
いくつかのデータベース クエリを実行するポップアップ ウィンドウがあります (Default.aspx ページからポップアップが表示されます)。値を取得したので、ポップアップを閉じて、これらの値を Default.aspx ページに送信します。
私は Response.redirect(Default.aspx? + myvalues here) を試しましたが、ポップアップ自体でページを開いています。
何か助けてください?
ポップアップの開閉はクライアント側のイベントです。Db から値を取得したら、window.close(); を使用してポップアップを閉じることができます。次に、window.location.href="Default.aspx? + myvalues; を使用して Default.aspx を開きます。