我有一個與Repeater一起顯示的活動列表。我已經使用計時器來顯示這些,所以計時器不是問題。這是我必須將其放入Timer_tick
方法的代碼。asp:Repeater with highlight(bold font)row with timer
「突出顯示計時器」應該突出顯示一次一個項目/行,然後我想顯示一些與突出顯示的行有關的信息。
如果使用另一個控件沒有問題,它更容易。我不必是一個直放站。我只是用它因造型-可能性(這是不是隻是一個行中顯示,但與幾個換行符等)
按照要求:
(中繼器)
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<div id="divActivity" runat="server">
<span style="font-size:30px;">
<%# DataBinder.Eval(Container.DataItem, "act_headline") %>
</span>
<br />
<img alt="mapIcon" src="../img/mapIcon.gif" height="15px" width="15px" style="position:absolute;" />
<span style="font-size:12px; font-style:italic; margin-left:23px;">
<%# DataBinder.Eval(Container.DataItem, "act_place") %>
</span>
<img alt="watchIcon" src="../img/watchIcon.png" height="15px" width="15px" style="position:absolute;" />
<span style="font-size:12px; font-style:italic; margin-left:23px;">
<%# DataBinder.Eval(Container.DataItem, "act_start") %> - <%# DataBinder.Eval(Container.DataItem, "act_end") %>
</span>
<br />
<div style="word-wrap: break-word; width:1000px; margin-top:20px; padding:0;">
<%# DataBinder.Eval(Container.DataItem, "act_text") %>
</div>
<br />
<img alt="infoIcon" src="../img/infoIcon.png" height="15px" width="15px" style="position:absolute;" />
<span style="font-size:12px; margin-left:23px;"><a target="_blank" href="http://<%# DataBinder.Eval(Container.DataItem, "act_info") %>"><%# DataBinder.Eval(Container.DataItem, "act_info") %></a>
</span>
</div>
</ItemTemplate>
</asp:Repeater>
我在Timer_tick事件中沒有任何東西,因爲我嘗試了幾件事情,並在失敗後將其刪除。希望它夠了。
你能告訴我們一些你已經嘗試過的代碼嗎? –
我已將Repeater的代碼添加到主帖子中。 – wazzadaya
如果我明白你的意思,你一直試圖突出顯示一件物品? –