asp.net fileupload控件上传图片并预览图片

页面代码:

<form id="form1" runat="server">
 <div>
  <asp:FileUpload ID="FileUpload1" runat="server" />
  <asp:Button ID="Button1" runat="server" Text="上传" Width="54px" OnClick="Button1_Click" />
  <asp:Label ID="Label1" runat="server" Text="" Style="color: Red"></asp:Label>
  <asp:Image runat="server" ID="Image1" Style="z-index: 102; left: 20px; position: absolute;
   top: 49px" Width="73px" />
 </div>
 </form>

后台代码:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace Web.File
{
 public partial class WebForm1 : System.Web.UI.Page
 {
  protected void Page_Load(object sender, EventArgs e)
  {

  }
  #region 文件上传
  /// <summary>
  /// 文件上传
  /// </summary>
  protected void Button1_Click(object sender, EventArgs e)
  {
   if (FileUpload1.FileName == "")
   {
    this.Label1.Text = "上传文件不能为空";
    return;
   }

   bool fileIsValid = false;
   //如果确认了上传文件,则判断文件类型是否符合要求
   if (this.FileUpload1.HasFile)
   {
    //获取上传文件的后缀
    String fileExtension = System.IO.Path.GetExtension(this.FileUpload1.FileName).ToLower();
    String[] restrictExtension = { ".gif", ".jpg", ".bmp", ".png" };
    //判断文件类型是否符合要求
    for (int i = 0; i < restrictExtension.Length; i++)
    {
     if (fileExtension == restrictExtension[i])
     {
      fileIsValid = true;
     }
     //如果文件类型符合要求,调用SaveAs方法实现上传,并显示相关信息
     if (fileIsValid == true)
     {
      //上传文件是否大于10M
      if (FileUpload1.PostedFile.ContentLength > (10 * 1024 * 1024))
      {
       this.Label1.Text = "上传文件过大";
       return;
      }
      try
      {
       this.Image1.ImageUrl = "~/File/" + FileUpload1.FileName;
       this.FileUpload1.SaveAs(Server.MapPath("~/File/") + FileUpload1.FileName);
       this.Label1.Text = "文件上传成功!";
      }
      catch
      {
       this.Label1.Text = "文件上传失败!";
      }
      finally
      {

      }
     }
     else
     {
      this.Label1.Text = "只能够上传后缀为.gif,.jpg,.bmp,.png的文件";
     }
    }
   }
  }
  #endregion
 }
}

  Web.config 配置:

<!--因为FileUpload 控件上传最大为4M,如果要上传更大文件,改下maxRequestLength的大小-->
<configuration>
 <system.web>
  <compilation debug="true" targetFramework="4.0" />
  <httpRuntime requestValidationMode="2.0" maxRequestLength="10485760" executionTimeout="3600" appRequestQueueLimit="10000"/>
 </system.web>
</configuration>
时间: 2024-10-18 16:12:55

asp.net fileupload控件上传图片并预览图片的相关文章

2016/4/19 ①单个文件上传 ②上传图片后 预览图片

1,f1.php <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <!-- 作业:在网上找上传图片预览的代码 上传服务器 再预览--> <form action="f1chuli.php&q

angular +H5 上传图片 与预览图片

//index.html <form class="form-horizontal"> <div class="panel panel-default"> <div class="panel-body"> <div class="container-fluid"> <div class="row"> <div class="form

asp.net FileUpload 控件上传文件 以二进制的形式存入数据库

图片上传事件代码如下所示: 1 byte[] binary = upload.FileBytes; 2 StringBuilder sqlStrSb = new StringBuilder(); 3 sqlStrSb.Append("update info set Thumb=?Imgwhere Id=200"); 4 string mySqlConStr = "Host=localhost; uid=root; pwd=123; DataBase=db"; 5 M

一个上传图片,预览图片的小demo

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>3</title> <script> function getFullPath(obj) { if (obj) { //Internet Explorer if (window.navigator.userAgent.indexOf("MSIE") >= 1)

利用formdata异步上传图片并预览图片

<img src="" style="width: 120px;margin-bottom: 5px" id="previewimg0"> <form action="" enctype="multipart/form-data" id="form0"> <input type="file" name="file" i

Uploadify 控件上传图片 + 预览

jquery的Uploadify控件上传图片和预览使用介绍. 在简单的servlet系统中和在SSH框架中,后台处理不同的,在三大框架中图片预览时费了不少力气,所以下面将两种情况都介绍一下. 1,前台代码 script: [html] view plaincopyprint? $("#uploadify").uploadify({ 'langFile'       : '<%=request.getContextPath()%>/config/juploadify/uplo

使用Anthem.NET 1.5中的FileUpload控件实现Ajax方式的文件上传

Anthem.NET刚刚发布了其最新的1.5版本,其中很不错的一个新功能就是对文件上传功能的Ajax实现.本文将简要介绍一下该功能的使用方法. Anthem.NET的下载与安装 Anthem.NET可以在此下载:http://sourceforge.net/project/showfiles.php?group_id=151897&package_id=168043&release_id=493609 下载之后解压缩至硬盘中的某一目录中,编译项目得到Anthem.dll.然后将其拷贝到We

Asp.net中FileUpload控件实现图片上传并带预览显示

单一图片上传——“选择”+“上传”,.NET默认模式: 1.实现原理: 采用FileUpload控件默认的使用方式,先由“选择”按钮选择图片,然后单击“上传”按钮完成上传,并可在“上传”按钮的单击事件中加载已上传图片. 2.关键代码:     页面代码: 1 <asp:FileUpload ID="FileUpload" runat="server" /> 2 <asp:Button ID="BtnUp" runat="

FileUpload控件预览图片

HTML代码: <tr> <td class="auto-style1">上传图片:</td> <td> <asp:FileUpload ID="FileUpload1" runat="server" onchange="chgImg(this)" /> <div> <img src="" id="Photo"