1
我想從列表框中打印內容到文本文件,但它似乎不工作。 SortedFlats文本文件不顯示任何內容。c#將列表框內容寫入文本文件
protected void printImageButton_Click(object sender, ImageClickEventArgs e)
{
StreamWriter flatStreamWriter = new StreamWriter(Server.MapPath("~") + "SortedFlats.txt");
for (int i = 0; i < flatListBox.Items.Count; i++)
{
flatStreamWriter.WriteLine(flatListBox.Items[i].ToString());
}
flatStreamWriter.Close();
}
'Server.MapPath'?的WinForms? –
對不起,這不是winforms。它是Web應用程序。 – user2699500