基本上我有几个复选框。如果选中复选框 1,我会将字符串分配给变量。所以我会让每个复选框都有自己的字符串,这些字符串将保存到一个文本文件中。
仅当单击按钮时,这些字符串才会保存到文本文件中。
我这样做了:
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
string masterbuild1 = "Exec_Build_starting_mail";
}
protected void Button1_Click(object sender, EventArgs e)
{
// create a writer and open the file
TextWriter tw = new StreamWriter("C:/Documents and
Settings/Cha57061/Desktop/New Folder/C#/new/build.txt");
// should i have a if statement like:
if CheckBox1_CheckedChanged = true
{
tw.Write(masterbuild1);
}
// close the stream
tw.Close();
我想我需要在按钮上添加一个 if else 语句..提前谢谢