How can I pass data to a aspx page, via POST and then open this page as a pop up ?
I'm trying use $.post
method, but how can I open this filled page in a pop up ?
If I try something like this, will open the mypage.aspx without the data that I pass ?
$.post("..mypage.aspx", {datainfo : datainfo }, function (data) { window.open() }