在后面的代码中更改警报字体

时间:2014-03-20 06:01:04

标签: javascript asp.net

我使用下面的代码在我的页面中显示消息

if (Session["Message"] != null)
    {

        //Write message code here
        this.ClientScript.RegisterStartupScript(GetType(), "Javascript", "<script>alert('insert succesfullyا')</script>");

        Session["Message"] = null;
    }

我希望此消息显示为(font=Tahoma font-size=12px and font-weight:bold

我怎么做?

1 个答案:

答案 0 :(得分:0)

不,不可能。

你必须使用自定义警报框。使用jQuery,这里有一些:

这个answer显示了一种使用jquery ui对话框进行类似确认的阻止对话框的方法

检查此问题已经回答了问题: Change the styling of default alert box