эврика!этот тест работает:
function postData() {
$.post('popup.aspx', { text1: "aaa", text2: "bbb" }, function (result) {
WinId = window.open('', 'newwin', 'width=400,height=500');
WinId.document.open();
WinId.document.write(result);
WinId.document.close();
});
}
на popup.aspx.cs
test1.Text = Request["text1"];
test2.Text = Request["text2"];
на popup.aspx
<asp:Label ID= "test1" runat="server"></asp:Label>
<asp:Label ID= "test2" runat="server"></asp:Label>