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

发布时间:2022-04-16 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了asp.net fileupload控件上传图片并预览图片脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

本文为大家分享了fileupload控件实现上传图片后并进行预览图片的功能,并对web.config进行了配置,先看一下最终效果:

页面代码:

 <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>

为大家附3个精彩的专题

ASP.NET控件使用手册

ASP.NET数据绑定控件使用汇总

ASP.NET控件使用汇总

亲,你可以在自己的项目中实现fileupload控件上传图片并进行预览图片的功能,这样网站更具有实用性,基本步骤就是这些,可能还有小编遗漏的地方,希望大家谅解。

脚本宝典总结

以上是脚本宝典为你收集整理的asp.net fileupload控件上传图片并预览图片全部内容,希望文章能够帮你解决asp.net fileupload控件上传图片并预览图片所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:asp.net