Bulleted list control
-
Hi all, Im using asp bulleted list control with ajax paging extender. I want to display the bullets flow in horizontal direction. can any one help me. it displays like .asaa .sadsa .asasa Please help me.
You can use CSS to control the elements on your page.
only two letters away from being an asset
-
Hi all, Im using asp bulleted list control with ajax paging extender. I want to display the bullets flow in horizontal direction. can any one help me. it displays like .asaa .sadsa .asasa Please help me.
anu_anu wrote:
it displays like .asaa .sadsa .asasa
Means U want To Display It .asaa .sadsa .asasa or the Format U asked I am Bit Confused:confused: http://www.asp.net/LEARN/ajax-videos/video-145.aspx[^] I think the above is Not Ur Answer Right..!
If It Helps Click It as Answer
-
Hi all, Im using asp bulleted list control with ajax paging extender. I want to display the bullets flow in horizontal direction. can any one help me. it displays like .asaa .sadsa .asasa Please help me.
You need to display horizontal.. use
display:inline
For Example :<style>
.bulletstyle
{
padding-left:10px;
}
.bulletstyle li
{
display:inline; /* This will produce single line output*/
}<style>
<asp:BulletedList runat="server" ID="blt" CssClass="at-red">
asp:ListItemItem1</asp:ListItem>
asp:ListItemIten2</asp:ListItem>
asp:ListItemItem3</asp:ListItem>
</asp:BulletedList>The output will be Item1 Item2 Item3
:-D :-DAbhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
You need to display horizontal.. use
display:inline
For Example :<style>
.bulletstyle
{
padding-left:10px;
}
.bulletstyle li
{
display:inline; /* This will produce single line output*/
}<style>
<asp:BulletedList runat="server" ID="blt" CssClass="at-red">
asp:ListItemItem1</asp:ListItem>
asp:ListItemIten2</asp:ListItem>
asp:ListItemItem3</asp:ListItem>
</asp:BulletedList>The output will be Item1 Item2 Item3
:-D :-DAbhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
and 7 hours later...
only two letters away from being an asset
-
Hi all, Im using asp bulleted list control with ajax paging extender. I want to display the bullets flow in horizontal direction. can any one help me. it displays like .asaa .sadsa .asasa Please help me.
Use css considering <UL> and <LI> elements because the bulletedlist is rendered using <UL> and <LI> elements.