我正在使用ASP.Net fileupload控件来允许用户上传带有txt扩展名的制表符分隔文件。
如何在代码中确保文件是以制表符分隔的?我正在使用C#。
目前,我正在使用以下代码。
StreamReader stream = null;
if (FileUpload1.HasFile)
{
if (FileUpload1.FileName.EndsWith("txt") )
{
string filename = Path.Combine(Server.MapPath("~/files"), Guid.NewGuid().ToString() + ".txt");
FileUpload1.PostedFile.SaveAs(filename);
Session["UploadedFileName"] = filename;
stream = new StreamReader(FileUpload1.PostedFile.InputStream);
}
else
{
lblMessage.Text = "File format not supported. Please use a tab delimited .txt file.";
pnlMessage.Visible = true;
return;
}
}
else
{
lblMessage.Text = "You must select a file to upload.";
pnlMessage.Visible = true;
return;
}
答案 0 :(得分:0)
服务器控件 一次只能上传一个文件 不支持上传多个文件