我使用下面的代码在我的页面中显示消息
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
)
我怎么做?
答案 0 :(得分:0)
不,不可能。
你必须使用自定义警报框。使用jQuery,这里有一些:
这个answer显示了一种使用jquery ui对话框进行类似确认的阻止对话框的方法
检查此问题已经回答了问题: Change the styling of default alert box