如何在asp.net[服务器端]的文本文件中保存列表框项目
本文关键字:文件 文本 保存 列表 项目 asp net 服务器端 | 更新日期: 2023-09-27 18:24:03
我使用了两个列表框控件
例如:
list box 1 list box 2
hi
bye
how
然后在第二个列表框中传递值
例如:
list box 1 list box 2
how hi
bye
我有保存第二个列表框项目int文本文件(记事本)的代码。
循环ListBox,然后将其写入txt文件。
string sListBoxItems = "";
for(int i = 0; i < listBox1.Items.Count; i++) {
sListBoxItems += listBox1.Items[i].ToString();
}
File.WriteAllText("yourfile.txt", sListBoxItems );