Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带逗号的字符串,Label现在我想Gridview在 asp.net 的同一页面上的新行中获取用逗号分隔的所有值。
Label
Gridview
例子:
输入:
delhi,haryana,punjab,u.p
输出:
Delhi Haryana Punjab u.p
有什么建议么
首先,您需要使用字符串函数分隔标签文本,然后使用类似 -
DataSet ds = new DataSet(); DataTable dt = ds.Tables[0]; DataRow dr = dt.NewRow(); dr[0] = first value; dr[1] = second value; dr[2] = third value; dt.Rows.Add(dr);
尝试一下。
不要忘记编写这两行最重要的代码-
Gridview.DataSource = dt; Gridview.DataBind();