I create popoup window:
window.open(msg,'LoginPopup');
After popup window implemnet a Get request to this function in the server:
public void GmailOAuthCallback(string code)
{
object contacts = GmailServiceWorkflow.GetContacts(code);
}
I want to close the window.
Any idea how can I close the popup window whithin GmailOAuthCallback function?