How to call a JavaScript alert
from a static method in C#?
I have tried the following code but the method does not get called.
public static void WriteToErrorLog()
{
Page mypage = new Page();
ErrorMessage(mypage);
}
public static void ErrorMessage(Page page)
{
page.ClientScript.RegisterStartupScript(typeof(Page), "alert", "<script type='text/javascript'>alert('Oops something went wrong, please try later...!!');</script>");
}
you can use the following code to get a reference to the current ScriptManager:
and then use it as per the following example: