I have a DropDownList populated from a LINQ query. As per the design requirements of this project, I need to append 4 " " to the DDL's ListItem.Text.
It works when I add the ListItems manually like so:
<asp:ListItem Value="NULL">&nsbp;&nsbp;&nsbp;&nsbp;Select One</asp:ListItem>
but not when I DataBind() and use:
DataTextFormatString = "&nsbp;&nsbp;&nsbp;&nsbp;{0}";
Any help is appreciated.
AND: Before someone says something about the HTML code, I had to call it a "&nsbp;" since it wouldn't allow me to use Non-Breaking Space char code.
Thanks!
