以下是我的代码。
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"
如何也显示额外的空格并避免这种修剪?