上面我添加了我的列表视图,我是网络应用程序的初学者,请帮我查一下?
<td class="auto-style11">
<asp:HiddenField ID="hfSelectedRecord" runat="server" />
<table id="tblCurrencyName" frame="border" style="border: thin double #990033; margin-left: 117px;">
<tr class="altRow">
<td class="auto-style31">
<b>Sno</b>
</td>
<td class="auto-style30">
<b>Currency Name</b>
</td>
<td class="auto-style30"><b>Action</b></td>
</tr>
<asp:ListView ID="lstViewCurrencyName" OnItemCommand="lstViewCurrencyName_ItemCommand" runat="server" >
<ItemTemplate>
<tr class="<%#(Container.DataItemIndex+1)%2==0?" altrow":"normalrow"%>">
<td>
<%#Container.DataItemIndex+1%>
</td>
<td>
<%#Eval("CURRENCY_NAME") %>
</td>
答案 0 :(得分:0)
如果为控件设置了高度,则ListView
应显示垂直滚动条。
并且,如果您需要两个Scrollbars使用ListView
标记包裹DIV
,如下所示(并且,请注意DIV标记的style
和height属性)。在这种情况下,请勿为height
设置ListView
。
<div style="height:350px; overflow:scroll">
<asp:ListView ID="lstViewCurrencyName" OnItemCommand="lstViewCurrencyName_ItemCommand" runat="server" >
...
</div>
希望这有帮助!