1

リスト ボックスの内容をテキスト ファイルに出力したいのですが、うまくいきません。SortedFlats テキスト ファイルには何も表示されません。

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();
}
4

1 に答える 1