You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
622 B

<%@ Page Language="C#" %>
<%@ Register TagPrefix="obout" Namespace="Obout.Grid" Assembly="obout_Grid_NET" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OleDb" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<script language="C#" runat="server">
protected void OnGridRowCreated(object sender, GridRowEventArgs args)
{
// modify the row structure here
}
protected void OnGridRowDataBound(object sender, GridRowEventArgs args)
{
args.Row.Cells[0].ForeColor = System.Drawing.Color.Red;
args.Row.Cells[0].BackColor = System.Drawing.Color.LightGray;