本文介绍了如何在datalist中分隔行?我能够分隔列而不是行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以分隔列但不能分隔行
请在行分隔中帮助我
Datalist标记:
I'm able to separate columns but not rows
please Help Me in Rows seperation
Datalist markup :
<asp:DataList ID="dlbooks" runat="server" RepeatColumns="7" RepeatDirection="Horizontal">
<ItemTemplate>
<table runat="server" id="tblitems" class="list">
<tr>
<td style="padding: 15px;" id="tdindl">
<div id="divauthor" style="display: none;">
<asp:Label ID="Label3" runat="server" Text="Author"></asp:Label>
<span>:</span>
<asp:Label ID="Label4" runat="server" Text='<%#Eval("AuthorName") %>'></asp:Label>
</div>
<div id="mydiv" style="height: 100px; width: 100px;">
<asp:Image ID="lblimg" Width="70%" Height="95px" ToolTip='<%#Eval("AuthorName") %>' runat="server" ImageUrl='<%#Eval("imagePath1")%>' />
<br />
<asp:HyperLink ID="HypView1" runat="server" TabIndex="6" onlosefocus="document.getElementById('<%=ddluser.ClientID%>').focus();"
NavigateUrl='<%#Eval("FilePath") %>' Target="_blank" Text='<%#Eval("Title") %>'></asp:HyperLink>
</div>
</td>
</tr>
</table>
</ItemTemplate>
<SeparatorTemplate>
<hr />
</SeparatorTemplate>
<SeparatorStyle Font-Size="Smaller" BorderColor="Aqua" BorderStyle="NotSet" BackColor="AntiqueWhite" />
</asp:DataList>
推荐答案
这篇关于如何在datalist中分隔行?我能够分隔列而不是行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!