2011-11-18 72 views
1

什麼是ASPX控件可以提供Outlook「To」控件的行爲,它適用於選擇多個項目並將其橫向顯示,ListBox對我來說已經足夠,但我無法找到更改項目的方法取向爲水平。水平列表框aspx

回答

3

要水平顯示信息,可以使用DataList控件,然後將RepeatDirection屬性設置爲水平

<asp:DataList id="ItemsList" RepeatDirection="Horizontal" runat="server"> 
    <ItemTemplate> 
     { whatever you want to display here } 
    </ItemTemplate> 
</asp:DataList>