Hello,
I am opening up a radalert via serverside (see below) and the radalert opens up in the top left corner. How can I get the radalert to center?
Thanks
I am opening up a radalert via serverside (see below) and the radalert opens up in the top left corner. How can I get the radalert to center?
Thanks
| injectScript.Text = string.Format("<script type='text/javascript'>ShowAlert('Error', 'An error occurred, please contact your system admin. Error Info: '{0}' ');</script>", ex); |
| <script type="text/javascript" language="javascript"> |
| function ShowAlert(title, message) |
| { |
| window.setTimeout(function() |
| { |
| radalert(message, 300, 300, title);},0) |
| } |
| </script> |