检查ASP.NET中的读取和未读消息

时间:2016-02-06 14:32:20

标签: c# html asp.net

如果用户尚未访问该消息,则它仍为粗体(“未读”),并且该数字应显示未读消息的数量。如果用户单击该链接并访问它,则会从粗体变为解压缩(“读取”)

enter image description here .aspx代码:

<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#c​​ode:

string ContactCount = system.GetDataCell("Select Count(*) from TBLCONTACTFORM");
txtContactCount.InnerText = ContactCount.ToString();

现在它正在工作,但它只显示总信息

2 个答案:

答案 0 :(得分:0)

您的SQL Select Count(*) from TBLCONTACTFORM将计算该表中的所有内容。你需要在那里添加某种WHERE条款。

答案 1 :(得分:0)

从TBLCONTACTFORM中选择Count(*)其中...... 添加条件。