在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在asp.net 2.0下,有时需要按需要的格式显示数据库中的内容到gridview中,比如如果库存为0的时候, Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) If e.Row.RowType = DataControlRowType.DataRow Then If (e.Row.DataItem("UnitsInStock") <0) Then e.Row.BackColor = Drawing.Color.Red End If End If End Sub |
请发表评论