如何为我的代码添加滚动条列表视图?

时间:2014-12-01 02:58:08

标签: c# html css asp.net web-applications

上面我添加了我的列表视图,我是网络应用程序的初学者,请帮我查一下?

 <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>

1 个答案:

答案 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>

希望这有帮助!