Hi all,
I want to redirect to some page with through javascript. I have tried lots of options but not succeed in any. :(
Code:window.location.href = 'default.aspx';
location.href = 'default.aspx';
document.location.href = 'default.aspx';
window.open('default.aspx','_self','','');
window.navigate('default.aspx');
setTimeout('window.location.href=default.aspx',100);
window.replace('default.aspx');
None of above is working for me.
Please help me out.
Any help would be appreciated.