(asp.net)用DropDownList加入ListItem时,怎样输入空格_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > (asp.net)用DropDownList加入ListItem时,怎样输入空格

(asp.net)用DropDownList加入ListItem时,怎样输入空格

 2010/12/9 9:13:45  bb0536  http://bb0536.javaeye.com  我要评论(0)
  • 摘要:stringspace=server.HtmlDecode(" ");DropDownListAttribute.Items.Add(newListItem(space+"text","value"));
  • 标签:.net ASP.NET list item net
string space = server.HtmlDecode(" ");
DropDownListAttribute.Items.Add(new ListItem(space + "text", "value"));
发表评论
用户名: 匿名