In my .aspx file, I have the following code:
Code:
<asp:CheckBoxList ID="CheckBoxClassRegion" runat="server" DataSourceID="SqlDataSourceCR"
DataTextField="HighSchoolName" DataValueField="HighSchoolName"
OnSelectedIndexChanged="CheckBoxClassRegion_SelectedIndexChanged" RepeatLayout="Flow" TextAlign="Right">
</asp:CheckBoxList>
I get a result that looks something like this:
[]
ItemOne
[]
ItemTwo
[]
ItemThree
----------------------
I am looking to have the resulting text aligned to the right of the checkbox, but regardless of my TextAlign value, the checkbox and text are not on the same horizontal alignment. Any suggestions as to how to get these items on the same line?
Thank You