首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

Repeater取舍后的样式添加

2014-01-15 
Repeater选择后的样式添加我从数据库读出数据。然后Repeater来显示出来前端我是这样写的asp:Repeater id

Repeater选择后的样式添加
我从数据库读出数据。然后Repeater来显示出来
前端我是这样写的


<asp:Repeater id="repeater1" runat="server" OnItemCommand="Repeater1_ItemCommand">
<ItemTemplate>
<asp:LinkButton runat="server" ID="LinkBtnAdd" CommandArgument='<%# Eval("Autoid") %>' CommandName="add">
 <dl>
  <dt>这里是数据</dt>
 </dl>
</asp:LinkButton>
</ItemTemplate>
</asp:Repeater>   


数据显示出来后,我需要选择数据,然后给dl样式class=”selected“ 
现在问题是,我如何给dl他class样式。
我尝试在dl处写个<%=addCSS%> 但是选择一个,所有的都有样式了。希望给个思路。该如何做
[解决办法]
<%# Eval("id").ToString()=="xxx"?"selected":""%>

热点排行