Paso 1: escriba la declaración SQL de esta manera:
seleccione los 5 principales PK_Rntol_ID, Título, RenoDate, Promulgator, Flag = caso
cuando getdate() - RenoDate <5 y luego '1'
más '0'
fin
de esintypzb.T_Info_Rntol donde RenoKind= @type ordenar por RenoDate desc
Paso 2:
En el método DataBound() de DataGrid:
/// <summary>
///Decide si mostrar el nuevo ícono según la fecha
/// </summary>
/// <param nombre="remitente"></param>
/// <param nombre="e"></param>
vacío privado wgrd_Info_ItemDataBound (remitente del objeto, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
if(e.Item.Cells[5].Texto == "1")
{
e.Item.Cells[1].Text = e.Item.Cells[1].Text + " <img src=../../Images/new.gif>";
}
}
}