ASP.NET04 Feb 6, 2018 ASP.NET 文件上传html中添加表单1234<form method="post" enctype="multipart/form-data" action="ProcessUpload.ashx"> <input type="file" name="file1"/> <input type="submit" value="upload"/></form> 文件上传注意点: 必须使用post form中enctype="multipart/form-data",使用表单快 添加文件域 <input type="file" name="file1"/> Read More 文件上传下载