Bulleted List Control in asp.net
For Example: Write a program to demonstrate the use of bulleted list control.
<html>
<head runat="server">
<title>Aryan Computers (Bulleted List)</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Size="X-Large"
ForeColor="#000099" Text="Example of Bulleted List Control"></asp:Label>
</div>
<asp:BulletedList ID="BulletedList1" runat="server" BulletStyle="Square"
Font-Bold="True" Height="36px" style="margin-bottom: 131px" Width="177px">
<asp:ListItem>Funda. of Computer</asp:ListItem>
<asp:ListItem>C Programming</asp:ListItem>
<asp:ListItem>Java Programming</asp:ListItem>
<asp:ListItem>ASP.Net </asp:ListItem>
<asp:ListItem>C#</asp:ListItem>
<asp:ListItem>F#</asp:ListItem>
<asp:ListItem>MySql</asp:ListItem>
<asp:ListItem>Software Testing</asp:ListItem>
</asp:BulletedList>
</form>
</body>
</html>
Output:
Comments
Post a Comment