列表显示新闻等信息,添加新消息图标

显示新消息,热点消息,可以通过内容字段进行判断,添加相应的图标实现。

    protected string GetContent(string wordContent, string isNew)
    {
        TimeSpan d1 = Convert.ToDateTime(System.DateTime.Now.ToShortDateString()).Subtract(Convert.ToDateTime(isNew));
        if(d1.Days <= 7)       //if (isNew == "1")
             return wordContent + " <img src=\"/Images/Chat/new.gif\" border=\"0\" />";
        else
            return wordContent;
    }

  传入要显示的内容和标识,通过时间判断添加相应的图片。

posted @ 2013-01-09 11:51  春天里的桃花  阅读(205)  评论(0编辑  收藏  举报