asp文件中dropdownlist写在cs文件中 怎么用asp:Lable标签显示值

2024-12-22 14:54:52
推荐回答(2个)
回答1:

先添加引用
using System.IO;
然后:
private void button1_Click(object sender, EventArgs e)
{
if (label1.Text == string.Empty)
{
MessageBox.Show("要写入的文件内容不能为空");
}
else
{
//设置保存文件的格式
saveFileDialog1.Filter = "文本文件(*.txt)|*.txt";
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
//使用“另存为”对话框中输入的文件名实例化StreamWriter对象
StreamWriter sw = new StreamWriter(saveFileDialog1.FileName, true);
//向创建的文件中写入内容
sw.WriteLine(label1.Text);
//关闭当前文件写入流
sw.Close();
label1.Text = string.Empty;
}
}
}

回答2:

121521