Following is my code.
protected void Button3_Click(object sender, EventArgs e)
{
var newLsit = new List<string>();
newLsit.Add("1 1");
newLsit.Add("1 1");
newLsit.Add("1 1");
this.DropDownList1.DataSource = newLsit;
this.DropDownList1.DataBind();
}
When dropdown list displays the values all the values are coming as "1 1" "1 1" "1 1"
How to display extra spaces as well and avoid this trimming?