How to call window.alert(“message”); from C#?

后端 未结 10 2315
春和景丽
春和景丽 2021-02-07 05:18

I have my own exception based on some condition and want to raise an alert when control comes in this catch block

catch (ApplicationException ex)
{
    //want t         


        
10条回答
  •  终归单人心
    2021-02-07 06:03

    You can also do this :

     catch (Exception ex)
        {
    
            ScriptManager.RegisterStartupScript(Page, Page.GetType(), "showError",
               "alert('" + ex.Message + "');", true);
    
        }
    

    this will show the exeption message in the alert box

提交回复
热议问题