I am using following code to post the data from pop up to the another page.
I want to redirect the parent page to the another page(assignkit.aspx) and close the pop up page.
var xmlHTTP = new ActiveXObject("Microsoft.XMLHTTP");
xmlHTTP.open("POST", "AssignKit.aspx", false);
xmlHTTP.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
xmlHTTP.send(QStr);
Thank you in advanced.