Hi
We dynamically call rad alert from c# code.
I could see the popup on click of ok or even the close button i could redirect to some page.
But if i press enter button in the keyboard the close event is not firing.
Any sugessions will be of great help.
Script
C#
Regards
Bharath.
We dynamically call rad alert from c# code.
I could see the popup on click of ok or even the close button i could redirect to some page.
But if i press enter button in the keyboard the close event is not firing.
Any sugessions will be of great help.
Script
<script type="text/javascript">
function ShowAlert()
{
var oWnd = radalert('Password Updated Successfully!', 330, 110,'Message');
oWnd.add_close(closingFn);
}
function closingFn()
{
window.location =
"Logout.aspx";
}
</script>
C#
string
scriptstring = "ShowAlert();";
ScriptManager.RegisterStartupScript(this, this.GetType(), "radalert", scriptstring, true);
Regards
Bharath.