에서는
보호된 void Button1_Click(객체 전송자, EventArgs e)를
사용합니다.
{
노력하다
{
判断文件大小#region 判断文件大小
int intFileLength = this.FileUpload1.PostedFile.ContentLength;
if (intFileLength > 50000)
{
this.Label1.Text = "문자 그대로 50k, 불상";
반품;
}
#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 = "문서 작성 완료";
}
잡기 (System.Exception ex)
{
this.Label1.Text = "문서 내용:" + ex.Message;
}
}
예를 들면: