kennyaidan
Programmer
Hi,
I was looking to find out how to format a list of check boxes. My check box code is
<asp:CheckBoxList id="check" runat="server" AutoPostBack="True"/>
They are set up in the code using the following code
dim mylist=New ArrayList
while (dr.Read())
aidan=dr.GetString(0)
aidan1=dr.GetString(1)
aidan2=dr.GetString(2)
aidan3=dr.GetString(3)
mylist.Add(aidan)
End While
check.DataSource=mylist
check.DataBind()
Where can i add in font formating tags do that lets say all checkboxes are displayed using the following font type size and color
<font face="Arial, Helvetica, sans-serif" size="3" color="#3B52B9">
I'm only a beginner asp.net programmer so any help greatly appreciated
Thanks
aidan
I was looking to find out how to format a list of check boxes. My check box code is
<asp:CheckBoxList id="check" runat="server" AutoPostBack="True"/>
They are set up in the code using the following code
dim mylist=New ArrayList
while (dr.Read())
aidan=dr.GetString(0)
aidan1=dr.GetString(1)
aidan2=dr.GetString(2)
aidan3=dr.GetString(3)
mylist.Add(aidan)
End While
check.DataSource=mylist
check.DataBind()
Where can i add in font formating tags do that lets say all checkboxes are displayed using the following font type size and color
<font face="Arial, Helvetica, sans-serif" size="3" color="#3B52B9">
I'm only a beginner asp.net programmer so any help greatly appreciated
Thanks
aidan