文件名称:ASP.NET实现上传图片并生成缩略图的方法
文件大小:50KB
文件格式:PDF
更新时间:2024-01-23 14:38:00
.NET AS 传照片
本文实例讲述了ASP.NET实现上传图片并生成缩略图的方法。分享给大家供大家参考,具体如下: protected void bt_upload_Click(object sender, EventArgs e) { //检查上传文件的格式是否有效 if (this.UploadFile.PostedFile.ContentType.ToLower().IndexOf(image) < 0) { Response.Write(上传图片格式无效!); return; } //生成原图 Byte[] oFileByte = new byte[this.U