如何将 table 的总行数绑定到 bootstrap 徽章?
How to bind the count of total rows of a table in to a bootstrap badge?
是否可以将 'number' 绑定到 bootstrap 徽章。 'number' 是从 Sql 服务器检索的,使用 select count(*) from dbo.table_name
截至目前,我有按钮,当我单击它时,我会在警告框中获得 table 的总行数。我想使用 bootstrap 徽章,这个徽章是否可能包含每次加载页面时的总行数。
带有标签:
<a href="#">News <span class="badge">5</span></a><br>
有按钮:
<button type="button" class="btn btn-primary">Primary <span class="badge">5</span></button>
把你的结果替换掉5就可以了。这很容易也很可能。
通过页面加载事件,您可以在加载页面时获取编号。
您将拥有
HTML
<asp:Label runat='server' id='lblcount' class='label label-default'/>
在Cs
lblcount.Text =//value from the DB
所以 bootstrap 徽章 class 被赋予了标签
更多详情请参考this link
是否可以将 'number' 绑定到 bootstrap 徽章。 'number' 是从 Sql 服务器检索的,使用 select count(*) from dbo.table_name
截至目前,我有按钮,当我单击它时,我会在警告框中获得 table 的总行数。我想使用 bootstrap 徽章,这个徽章是否可能包含每次加载页面时的总行数。
带有标签:
<a href="#">News <span class="badge">5</span></a><br>
有按钮:
<button type="button" class="btn btn-primary">Primary <span class="badge">5</span></button>
把你的结果替换掉5就可以了。这很容易也很可能。
通过页面加载事件,您可以在加载页面时获取编号。
您将拥有
HTML
<asp:Label runat='server' id='lblcount' class='label label-default'/>
在Cs
lblcount.Text =//value from the DB
所以 bootstrap 徽章 class 被赋予了标签 更多详情请参考this link