1 使用标准HTML来进行图片上传

前台代码:


<body> 
    <form id="form1" runat="server"> 
    <div> 
        <table> 
            <tr> 
                <td colspan="2" style="height: 21px" > 
                    使用标准HTML来进行图片上传</td> 
            </tr> 
            <tr> 
                <td style="width: 400px"> 
                    <input id="InputFile" style="width: 399px" type="file" runat="server" /></td> 
                <td style="width: 80px"> 
                    <asp:Button ID="UploadButton" runat="server" Text="上传图片" OnClick="UploadButton_Click" /></td> 
            </tr> 
            <tr> 
                <td colspan="2" > 
                    <asp:Label ID="Lb_Info" runat="server" ForeColor="Red"></asp:Label></td>                 
            </tr> 
        </table>     
    </div> 
    </form> 
</body>

后台代码:


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;  public partial class _Default : System.Web.UI.Page  

    protected void Page_Load(object sender, EventArgs e) 
    {      } 
    protected void UploadButton_Click(object sender, EventArgs e) 
    { 
        string uploadName = InputFile.Value;//获取待上传图片的完整路径,包括文件名 
        //string uploadName = InputFile.PostedFile.FileName; 
        string pictureName = "";//上传后的图片名,以当前时间为文件名,确保文件名没有重复 
        if (InputFile.Value != "") 
        { 
            int idx = uploadName.LastIndexOf("."); 
            string suffix = uploadName.Substring(idx);//获得上传的图片的后缀名 
            pictureName = DateTime.Now.Ticks.ToString() + suffix; 
        } 
        try 
        { 
            if (uploadName != "") 
            { 
                string path = Server.MapPath("~/images/"); 
                InputFile.PostedFile.SaveAs(path + pictureName); 
            } 
        } 
        catch (Exception ex) 
        { 
            Response.Write(ex); 
        } 
    } 
}

2 单文件上传

这是最基本的文件上传,在asp.net1.x中没有这个FileUpload控件,只有html的上传控件,那时候要把html控件转化为服务器控件,很不好用。其实所有文件上传的美丽效果都是从这个FileUpload控件衍生,第一个例子虽然简单却是根本。

前台代码:


<body> 
    <form id="form1" runat="server"> 
    <div> 
        <table style="width: 90%"> 
            <tr> 
                <td style="width: 159px" colspan=2> 
                    <strong><span style="font-size: 10pt">最简单的单文件上传</span></strong></td> 
            </tr> 
            <tr> 
                <td style="width: 600px"> 
                    <asp:FileUpload ID="FileUpload1" runat="server" Width="600px" /></td> 
                <td align=left> 
                    <asp:Button ID="FileUpload_Button" runat="server" Text="上传图片" OnClick="FileUpload_Button_Click" /></td> 
            </tr> 
            <tr> 
                <td colspan=2> 
                    <asp:Label ID="Upload_info" runat="server" ForeColor="Red" Width="767px"></asp:Label></td> 
            </tr> 
        </table>     
    </div> 
    </form> 
</body>

后台代码:


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;  public partial class _Default : System.Web.UI.Page  

    protected void Page_Load(object sender, EventArgs e) 
    {      } 
    protected void FileUpload_Button_Click(object sender, EventArgs e) 
    { 
        try 
        { 
            if (FileUpload1.PostedFile.FileName == "") 
            //if (FileUpload1.FileName == "") 
            //if (!FileUpload1.HasFile)     //获取一个值,该值指示 System.Web.UI.WebControls.FileUpload 控件是否包含文件。包含文件,则为 true;否则为 false。 
            { 
                this.Upload_info.Text = "请选择上传文件!"; 
            } 
            else 
            { 
                string filepath = FileUpload1.PostedFile.FileName;  //得到的是文件的完整路径,包括文件名,如:C:\Documents and Settings\Administrator\My Documents\My Pictures\20022775_m.jpg 
                //string filepath = FileUpload1.FileName;               //得到上传的文件名20022775_m.jpg 
                string filename = filepath.Substring(filepath.LastIndexOf("\\") + );//20022775_m.jpg 
                string serverpath = Server.MapPath("~/images/") + filename;//取得文件在服务器上保存的位置C:\Inetpub\wwwroot\WebSite1\images\20022775_m.jpg 
                FileUpload1.PostedFile.SaveAs(serverpath);//将上传的文件另存为 
                this.Upload_info.Text = "上传成功!"; 
            } 
        } 
        catch (Exception ex) 
        { 
            this.Upload_info.Text = "上传发生错误!原因是:" + ex.ToString(); 
        } 
    } 
}

3 多文件上传

前台代码:


<body> 
    <form id="form1" runat="server"> 
    <div> 
    <table style="width: 343px"> 
            <tr> 
                <td style="width: 100px"> 
                    多文件上传</td> 
                <td style="width: 100px"> 
                </td> 
            </tr> 
            <tr> 
                <td style="width: 100px"> 
                    <asp:FileUpload ID="FileUpload1" runat="server" Width="475px" /> 
                    </td> 
                <td style="width: 100px"> 
                    </td> 
            </tr> 
            <tr> 
                <td style="width: 100px"> 
                    <asp:FileUpload ID="FileUpload2" runat="server" Width="475px" /></td> 
                <td style="width: 100px"> 
                </td> 
            </tr> 
            <tr> 
                <td style="width: 100px"> 
                    <asp:FileUpload ID="FileUpload3" runat="server" Width="475px" /></td> 
                <td style="width: 100px"> 
                </td> 
            </tr> 
            <tr> 
                <td style="width: 100px"> 
                    <asp:Button ID="bt_upload" runat="server" OnClick="bt_upload_Click" Text="一起上传" /> 
                    <asp:Label ID="lb_info" runat="server" ForeColor="Red" Width="448px"></asp:Label></td> 
                <td style="width: 100px"> 
                </td> 
            </tr> 
        </table> 
    </div> 
    </form> 
</body>

后台代码:


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;  public partial class _Default : System.Web.UI.Page  

    protected void Page_Load(object sender, EventArgs e) 
    {      } 
    protected void bt_upload_Click(object sender, EventArgs e) 
    { 
        if (FileUpload1.PostedFile.FileName == "" && FileUpload2.PostedFile.FileName == "" && FileUpload3.PostedFile.FileName == "") 
        { 
            this.lb_info.Text = "请选择文件!"; 
        } 
        else 
        { 
            HttpFileCollection myfiles = Request.Files; 
            for (int i = ; i < myfiles.Count; i++) 
            { 
                HttpPostedFile mypost = myfiles[i]; 
                try 
                { 
                    if (mypost.ContentLength > ) 
                    { 
                        string filepath = mypost.FileName;//C:\Documents and Settings\Administrator\My Documents\My Pictures\20022775_m.jpg 
                        string filename = filepath.Substring(filepath.LastIndexOf("\\") + );//20022775_m.jpg 
                        string serverpath = Server.MapPath("~/images/") + filename;//C:\Inetpub\wwwroot\WebSite2\images\20022775_m.jpg 
                        mypost.SaveAs(serverpath); 
                        this.lb_info.Text = "上传成功!"; 
                    } 
                } 
                catch (Exception ex) 
                { 
                    this.lb_info.Text = "上传发生错误!原因:" + ex.Message.ToString(); 
                } 
            } 
        } 
    } 
}

4 客户端检查上传文件类型(以上传图片为例)


<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server"> 
    <title>客户端检查上传文件类型</title> 
    <script language="javascript"> 
    function Check_FileType() 
    { 
        var str=document.getElementById("FileUpload1").value; 
        var pos=str.lastIndexOf("."); 
        var lastname=str.substring(pos,str.length); 
        if(lastname.toLowerCase()!=".jpg"&&lastname.toLowerCase()!=".gif") 
        { 
            alert("您上传的文件类型为"+lastname+",图片必须为.jpg,.gif类型"); 
            return false; 
        } 
        else 
        { 
            return true; 
        }         
    } 
    </script> 
</head> 
<body> 
    <form id="form1" runat="server"> 
    <div> 
        <table> 
            <tr> 
                <td colspan="2"> 
                    客户端检查上传文件类型</td>                 
            </tr> 
            <tr> 
                <td style="width: 444px"> 
                    <asp:FileUpload ID="FileUpload1" runat="server" Width="432px" /></td> 
                <td style="width: 80px"> 
                    <asp:Button ID="bt_upload" runat="server" Text="上传图片" OnClick="bt_upload_Click" OnClientClick="return Check_FileType()" /></td> 
            </tr> 
            <tr> 
                <td colspan="2" style="height: 21px"> 
                    <asp:Label ID="lb_info" runat="server" ForeColor="Red" Width="515px"></asp:Label></td>                 
            </tr> 
        </table>     
    </div> 
    </form> 
</body> 
</html>

注意:点击上传时先触发客户端事件OnClientClick="return Check_FileType()"


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;  public partial class _Default : System.Web.UI.Page  

    protected void Page_Load(object sender, EventArgs e) 
    {      }      protected void bt_upload_Click(object sender, EventArgs e) 
    { 
        try 
        { 
            if (FileUpload1.PostedFile.FileName == "") 
            { 
                this.lb_info.Text = "请选择文件!"; 
            } 
            else 
            { 
                string filepath = FileUpload1.PostedFile.FileName; 
                //if (!IsAllowedExtension(FileUpload1)) 
                //{ 
                //    this.lb_info.Text = "上传文件格式不正确!"; 
                //} 
                if (IsAllowedExtension(FileUpload1) == true) 
                { 
                    string filename = filepath.Substring(filepath.LastIndexOf("\\") + ); 
                    string serverpath = Server.MapPath("~/images/") + filename; 
                    FileUpload1.PostedFile.SaveAs(serverpath); 
                    this.lb_info.Text = "上传成功!"; 
                } 
                else 
                { 
                    this.lb_info.Text = "请上传图片!"; 
                } 
            } 
        } 
        catch (Exception ex) 
        { 
            this.lb_info.Text = "上传发生错误!原因:" + ex.ToString(); 
        } 
    } 
    private static bool IsAllowedExtension(FileUpload upfile) 
    { 
        string strOldFilePath = ""; 
        string strExtension=""; 
        string[] arrExtension ={ ".gif", ".jpg", ".bmp", ".png" }; 
        if (upfile.PostedFile.FileName != string.Empty) 
        { 
            strOldFilePath = upfile.PostedFile.FileName;//获得文件的完整路径名 
            strExtension = strOldFilePath.Substring(strOldFilePath.LastIndexOf("."));//获得文件的扩展名,如:.jpg 
            for (int i = ; i < arrExtension.Length; i++) 
            { 
                if (strExtension.Equals(arrExtension[i])) 
                { 
                    return true; 
                } 
            } 
        } 
        return false; 
    } 
}

注意:若去掉客户端的脚本和客户端事件OnClientClick="return Check_FileType()",在后台代码
改为:

if (!IsAllowedExtension(FileUpload1)) 
                { 
                    this.lb_info.Text = "上传文件格式不正确!"; 
                } 
else if (IsAllowedExtension(FileUpload1) == true)

即变成服务器端检查上传文件类型。

5  服务器端检查上传文件的类型(文件内部真正的格式)


<body> 
    <form id="form1" runat="server"> 
    <div> 
        <table> 
            <tr> 
                <td colspan="2"> 
                    服务器检查上传文件类型</td>                 
            </tr> 
            <tr> 
                <td style="width: 444px"> 
                    <asp:FileUpload ID="FileUpload1" runat="server" Width="432px" /></td> 
                <td style="width: 80px"> 
                    <asp:Button ID="bt_upload" runat="server" Text="上传图片" OnClick="bt_upload_Click" /></td> 
            </tr> 
            <tr> 
                <td colspan="2" style="height: 21px"> 
                    <asp:Label ID="lb_info" runat="server" ForeColor="Red" Width="515px"></asp:Label></td>                 
            </tr> 
        </table>     
    </div> 
    </form> 
</body>

后台代码:


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; 
using System.IO;  public partial class _Default : System.Web.UI.Page  

    protected void Page_Load(object sender, EventArgs e) 
    {      } 
    protected void bt_upload_Click(object sender, EventArgs e) 
    { 
        try 
        { 
            if (FileUpload1.PostedFile.FileName == "") 
            { 
                this.lb_info.Text = "请选择文件!"; 
            } 
            else 
            { 
                string filepath = FileUpload1.PostedFile.FileName; 
                if (IsAllowedExtension(FileUpload1) == true) 
                { 
                    string filename = filepath.Substring(filepath.LastIndexOf("\\") + ); 
                    string serverpath = Server.MapPath("images/") + filename; 
                    FileUpload1.PostedFile.SaveAs(serverpath); 
                    this.lb_info.Text = "上传成功!"; 
                } 
                else 
                { 
                    this.lb_info.Text = "请上传图片"; 
                } 
            } 
        } 
        catch (Exception error) 
        { 
            this.lb_info.Text = "上传发生错误!原因:" + error.ToString(); 
        } 
    } 
    private static bool IsAllowedExtension(FileUpload upfile) 
    { 
        FileStream fs = new FileStream(upfile.PostedFile.FileName, FileMode.Open, FileAccess.Read); 
        BinaryReader r = new BinaryReader(fs); 
        string fileclass = ""; 
        byte buffer; 
        try 
        { 
            buffer = r.ReadByte(); 
            fileclass = buffer.ToString(); 
            buffer = r.ReadByte(); 
            fileclass += buffer.ToString(); 
        } 
        catch 
        {  
             
        } 
        r.Close(); 
        fs.Close(); 
        if (fileclass == "" || fileclass == ""||fileclass==""||fileclass=="")//说明255216是jpg;7173是gif;6677是BMP,13780是PNG;7790是exe,8297是rar 
        { 
            return true; 
        } 
        else 
        { 
            return false; 
        } 
    } 
}

转自: http://blog.csdn.net/qing0991/archive/2008/09/06/2890654.aspx

使用ASP.NET上传图片汇总的更多相关文章

  1. Asp.Net 上传图片并生成高清晰缩略图

    在asp.net中,上传图片功能或者是常用的,生成缩略图也是常用的.baidu或者google,c#的方法也是很多的,但是一用却发现缩略图不清晰啊,缩略图片太大之类的事情,下面是我在处理图片上的代码, ...

  2. Asp.Net 上传图片并生成高清晰缩略图(转)

    在asp.net中,上传图片功能或者是常用的,生成缩略图也是常用的.baidu或者google,c#的方法也是很多的,但是一用却发现缩略图不清晰啊,缩略图片太大之类的事情,下面是我在处理图片上的代码, ...

  3. ASP + ACCESS 上传图片到数据库与将图片读出数据库显示之实现

    1.uppic.asp:上传图片程序 <% dim rs dim formsize,formdata,bncrlf,divider,datastart,dataend,mydata formsi ...

  4. 使用asp.net上传图片并且裁剪的方法

    工欲善其事,必先利其器,坚持才能更好 这篇文章主要是强调怎么使用asp.net上传图片并且能够裁剪,这个功能主要使用在注册信息的时候需要上传头像并且图片格式很大的时候能够把图片裁剪成更小的图片.下面来 ...

  5. 常量,字段,构造方法 调试 ms 源代码 一个C#二维码图片识别的Demo 近期ASP.NET问题汇总及对应的解决办法 c# chart控件柱状图,改变柱子宽度 使用C#创建Windows服务 C#服务端判断客户端socket是否已断开的方法 线程 线程池 Task .NET 单元测试的利剑——模拟框架Moq

    常量,字段,构造方法   常量 1.什么是常量 ​ 常量是值从不变化的符号,在编译之前值就必须确定.编译后,常量值会保存到程序集元数据中.所以,常量必须是编译器识别的基元类型的常量,如:Boolean ...

  6. Asp.net 上传图片添加半透明图片或者文字水印的方法

    主要用到System.Drawing 命名空间下的相关类,如Brush.Image.Bitmap.Graphics等等类 Image类可以从图片文件创建Image的实例,Bitmap可以从文件也可以从 ...

  7. ASP.NET 教程汇总

    channel9 https://channel9.msdn.com/ .net core项目实战 https://study.163.com/course/introduction.htm?cour ...

  8. asp.net上传图片到服务器

    ASP.NET的FileUpload控件可用于上传文件到服务器.HoverTreeTop新增了一个“阅图”功能,图片就是用FileUpload上传的.阅图功能查看:http://hovertree.c ...

  9. 业界最有价值的 ASP.NET 博文汇总

    ASP.NET凭借它丰富的控件,强大的适应性及良好的封装性,成为业界开发的一门巨匠,它大大缩短了网站开发的时间,降低开发成本.并且可以运行在Web应用软件开发者的全部平台上.本电子书汇集了业界最有价值 ...

随机推荐

  1. Nginx添加到windows服务

    在windows平台,把Nginx注册到服务,又可以启动.停止和重启的方法,网上并没找到好的办法. 既然如此,唯有自己写程序实现了 使用C#进行编写,有兴趣的可以下载源码自己改:源码下载(2016-1 ...

  2. jqury 右击事件插件

    在有些时候,网页中需要给一些标签对象加入右击的事件,在网上看了一些小的插件,但是不能根据this获取到当前的标签.所以相对他们进行改进一下.自己写了一个小的js右击事件.废话不多说了,看代码. $(f ...

  3. StringBuffer(线程安全)StringBuilder(非线程安全)

    StringBuffer属于线程安全,相对为重量级 StringBuilder属于非线程安全,相对为轻量级 线程安全的概念: 网络编程中许多线程可能会同时运行一段代码.当每次运行结果和单独线程运行的结 ...

  4. iOS 使用Block进行逆传值

    跟通知一样也是两个控制器,然后代码创建控件直接上代码 #import "ViewController.h" #import "TwoViewController.h&qu ...

  5. c# 根据配置文件路径,设置和获取config文件 appSettings 节点值

    /// <summary> /// 获取编译后的主配置文件节点值 /// </summary> /// <param name="key">&l ...

  6. python 最大公约数

    求解两个整数(不能是负数)的最大公约数(要求两数不能同时为0)当两数都是0时,最大公约数为0方式一:穷举法 def GCU(m, n): if not m: return n elif not n: ...

  7. [OC] Podfile 格式内容

    platform :ios, '8.0' target :'targetName' do pod 'Masonry', '~> 1.0.1' pod 'SDCycleScrollView', ' ...

  8. reactive-turtle

    reactive-turtle 标签(空格分隔): Scala Github 偶然在Github上看到一个有意思的小项目,一个粑粑教11岁的儿子学习scala,因为学习语法等太枯燥了,所以写了一个海龟 ...

  9. memcached安装

    memcached安装 一.安装gcc # yum -y install gcc 二.安装libevent # wget http://www.monkey.org/~provos/libevent- ...

  10. 一个div里有多个a标签,改变a标签的字体颜色方法

    <script type="text/javascript">var all=document.getElementById("big");var ...