Die von asp.net 2.0 erstellte Version ist nicht verfügbar und wird nicht verwendet.Bei der Installation handelt es sich um
:
protected void Button1_Click(object sender, EventArgs e)
{
versuchen
{
判断文件大小#region 判断文件大小
int intFileLength = this.FileUpload1.PostedFile.ContentLength;
if (intFileLength > 50000)
{
this.Label1.Text = "文件大于50k,不能上传";
zurückkehren;
}
#endregion
判断保存的文件夹是否存在#region 判断保存的文件夹是否存在
string strUpPath = @"upfile" + System.DateTime.Now.ToShortDateString();// +@" ";
//文件夹不存在的时候,创建文件夹
if (!System.IO.Directory.Exists(Server.MapPath(strUpPath)))
{
System.IO.Directory.CreateDirectory(Server.MapPath(strUpPath));
}
string strUrl = Server.MapPath(strUpPath + @"" + this.FileUpload1.FileName);
#endregion
//上传文件
this.FileUpload1.SaveAs(strUrl);
this.Label1.Text = "文件上传成功";
}
Catch (System.Exception ex)
{
this.Label1.Text = "文件上传失败:" + ex.Message;
}
}
示例工程: