Hi..
I am using ASP.NET 2.0+C#. In my web page, I have a listbox. I have declared my list box as shown below:
Code:
<td align="center" valign="middle" style="width: 160px">
<asp:ListBox ID="lstPickAvillQueue" runat="server" Height="120px" Width="144px">
</asp:ListBox>
</td>
I want to provide a Horizontal scrollbar in the listbox, so that names which have more characters(250 characters) can be viewed properly. How to provide a horizontal scrollbar to the listbox?
Thank you