|
|
|
|
|
Code public static string GetNewGif(object obj) { DateTime postTime = Convert.ToDateTime(obj); if (postTime.AddHours(24) > DateTime.Now) { string rStr = "<img alt='' border='0' src='images/newgif.gif' />"; return rStr; } else { return ""; } }
|
|