gpt4 book ai didi

asp.net - 更改 GridView 中特定记录的样式

转载 作者:行者123 更新时间:2023-12-02 04:56:47 25 4
gpt4 key购买 nike

我正在 ASP.Net 中设计物流系统。在Order processing页面中,订单以Grid View显示,我想将行的字体样式更改为粗体,标记为“orderr not processed”。谢谢。

order processing page

最佳答案

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string OrStatus = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "Orderstatus"));
if (OrStatus == "Order not processed")
{
//You can use whatever you want to play with rows
e.Row.Cells[0].Font.Bold = true;
e.Row.Cells[2].CssClass = "gridcss";
}
}
}

遵循该代码。会有帮助

关于asp.net - 更改 GridView 中特定记录的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17849701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com