我已经把数据的路径保存到数据库了,,,,,但是,,下载的时候
string fileName = "20110711105101.txt";//客户端保存的文件名 string filePath = Server.MapPath(Session["Path"].ToString());//路径
这里的路径怎么写、、、、
绝对路径是E\e\Solution1\UI\upload
Server.MapPath(Path.Combine(@"~\upload", "20110711105101.txt"))
或
Path.Combine(@"E:\Solution1\UI\upload", "20110711105101.txt");
Path.Combine(@"E:\Solution1\UI\upload", fileName.Replace("/","\\"));