how link to another page in promp in javascript in asp.net with RabButton.I use this code but it does not work for radbutton!
function a()
{
var s = prompt("hello");
if (s != 123) {
alert("enter number correctly");
return true;
}
else {
window.location = 'WebForm2.aspx';
return false;
}
}