我在我的应用程序中使用网格视图。我想为每一行设置备用颜色..考虑网格视图有10行意味着奇数行应该包含红色,甚至行应该包含绿色。
有可能吗?如果这样plz劝告我!! 提前谢谢。
答案 0 :(得分:-1)
简单的一个:
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSource"
autogeneratecolumns="true"
emptydatatext="No data available."
runat="server">
<rowstyle backcolor="Red"
forecolor="Black" />
<alternatingrowstyle backcolor="Green"
forecolor="Black" />
</asp:gridview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the Web.config file. -->
<asp:sqldatasource id="CustomersSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server"/>