更改确认对话框的颜色
我作了一个用户管理系统,用DRIDVIEW对数据进行绑定,我现在想当删除用户时,出现确认对话框,但是还有要求:把用户名称的字体颜色改为红色,例如:你确认要删除某某吗?
但是不知道怎么做.
下面是我的代码:
//为删除、更新按钮添加提示
if (e.Row.Cells[0].HasControls())
{
LinkButton lbtnUpdate = (LinkButton)e.Row.Cells[0].Controls[0];
LinkButton lbtnDelete = (LinkButton)e.Row.Cells[0].Controls[2];
string UserName=DataBinder.Eval(e.Row.DataItem,"UserName").ToString();
string userName = string.Format((Server.HtmlEncode("<font color='red'>" + "{0}" + "</font>")),UserName);
if (lbtnUpdate.Text.Equals("更新"))
{
lbtnUpdate.Attributes.Add("onClick","javascript:return confirm('你确认要更新"+userName+"吗')");
}
}
大家帮我看看,
在线等....
先谢过!