asp.net GridView ItemStyle example: column specific style
GridViewItemStyleExample.aspx
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>asp.net GridView ItemStyle example: column specific style</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Navy">GridView ItemStyle Example</h2>
<asp:SqlDataSource
ID="SqlDataSource1"
runat="server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT ProductID, ProductName, UnitPrice FROM Products"
>
</asp:SqlDataSource>
<asp:GridView
ID="GridView1"
runat="server"
DataSourceID="SqlDataSource1"
ForeColor="AliceBlue"
BackColor="DarkSalmon"
BorderColor="Salmon"
AutoGenerateColumns="false"
HeaderStyle-BackColor="Crimson"
AllowPaging="true"
>
<Columns>
<asp:BoundField HeaderText="Product ID" DataField="ProductID" />
<asp:BoundField HeaderText="Product Name" DataField="ProductName" >
<ItemStyle Font-Italic="true" />
</asp:BoundField>
<asp:BoundField HeaderText="UnitPrice" DataField="UnitPrice" />
</Columns>
</asp:GridView>
</div>
</form>
</body>
</html>