HTML文字列をvReportContentとして返すAjax関数があります。
次に、javascript window.open を使用して新しい HTML ページを開きます。
このページには、vReportContent で更新したい「divReportContent」という div があります。
以下は、javascript/jquery のコード例です。
var vReportContent = msg; (returned from Jquery Ajax call - this works fine)
var vUrl = 'PrintReport.html';
var vWindowName = 'PrintReport';
window.open('' + vUrl + '', '' + vWindowName + '', width=1010, height=750;
*子 (開いている) ウィンドウの div を vReportContent で更新する
次のようなもの: $('#divReportContent').html(vReportContent);
または同等のJavaScript。
ありがとう!