如果用户尚未访问该消息,则它仍为粗体(“未读”),并且该数字应显示未读消息的数量。如果用户单击该链接并访问它,则会从粗体变为解压缩(“读取”)
<li><a href="ContactForm.aspx"><span class="icon16 icomoon-icon-envelop"></span><span class="txt">Contact Forms</span></a><span class="notification" id="txtContactCount" runat="server">0</span></li>
c#code:
string ContactCount = system.GetDataCell("Select Count(*) from TBLCONTACTFORM");
txtContactCount.InnerText = ContactCount.ToString();
现在它正在工作,但它只显示总信息
答案 0 :(得分:0)
您的SQL Select Count(*) from TBLCONTACTFORM
将计算该表中的所有内容。你需要在那里添加某种WHERE
条款。
答案 1 :(得分:0)
从TBLCONTACTFORM中选择Count(*)其中...... 添加条件。