WEB开发网
开发学院WEB开发ASP.NET 在DataGrid里面根据日期的不同显示new图标 阅读

在DataGrid里面根据日期的不同显示new图标

 2005-09-29 17:03:10 来源:WEB开发网   
核心提示:第一步:这样写Sql语句:select top 5 PK_Rntol_ID,Title,RenoDate,PRomulgator,Flag=casewhen getdate() - RenoDate < 5 then '1'else '0'endfrom esintypzb.T

第一步:这样写Sql语句:

select  top 5  PK_Rntol_ID,Title,RenoDate,PRomulgator,Flag=case
when getdate() - RenoDate < 5 then '1'
else '0'
end
from esintypzb.T_Info_Rntol where RenoKind= @type order by RenoDate desc

第二步:

在DataGrid的DataBound()方法里面:

/// <summary>
  /// 根据日期的多少,决定是否显示new图标
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  private void wgrd_Info_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
  {
  if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
  {
   if(e.Item.Cells[5].Text == "1")
   {
   e.Item.Cells[1].Text = e.Item.Cells[1].Text + " <img src=http://www.cncms.com/Images/new.gif>";
   }
  }
  }

Tags:DataGrid 里面 根据

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接