我有一张桌子:
<table id="TableCorpsDetails" runat="server" cellpadding="20" bgcolor="<%=BgColor%>" border ="1" align="center" width="50%">
在我的vb代码中,我绑定了一个蓝色(从中请求sql):
BgColor = myDS.Tables(0).Rows(0).Item("Couleur").ToString
当我执行该代码时,背景颜色为绿色,我不知道为什么......
在添加runat="server"
属性之前,我没有这种行为。
我通过删除BgColor
参数并仅使用vb代码修复此问题:
TableCorpsDetails.Style.Add("Background-color", .Item("Couleur").ToString)
但为什么runat="server"
会影响background-color
?