我有一个从服务器获取文件并下载的程序。它本身位于服务器上,因此要运行它,请打开浏览器并输入带有参数的 URL。
现在,当程序位于我的机器上时,它运行得非常好。但是,当通过浏览器访问时,它似乎挂起。我试过 MessageBox.Show(username, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification);
string[] lines = {"First line", "Second line", "Third line"};
System.IO.File.WriteAllLines(@"C:\Users\Public\TestFolder\WriteLines.txt", lines);
当在服务器上完成时,这两个都会导致错误(但在我自己的机器上很好)。
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\Users\Public\TestFolder\WriteLines2.txt"))
file.WriteLine("asfsd");
这似乎挂在写入行上,因为文件已创建但没有任何内容放入文件中。知道为什么会发生这种情况,或者我可以提出一些建议,以便我知道问题出在哪里?