User1139542394 posted
Hi
My situation is
In asp.net button click event , i have to open one URL
in new window.
So i have used the below code.But i faced popup blocker issue.So i tried
RadWindow.But my client want it in new window.
Code : -
string url = "google.com"
ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW", "history.go(-1);window.open('" + url + "');", true);
Can anyone help me for this scenario?
Thanks
Visa