麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發(fā)設計 > 正文

2014-07-23利用ASP.NET自帶控件實現(xiàn)單文件上傳與下載

2019-11-14 16:33:04
字體:
供稿:網(wǎng)友
效果圖

上傳文件頁面:




下載文件頁面:
 




1、母版頁site.Master
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="upAndDown.SiteMaster" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <link href="~/Styles/Site.CSS" rel="stylesheet" type="text/css" />
    <asp:ContentPlaceHolder ID="HeadContent" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form runat="server">
    <div class="page">
        <div class="header">
            <div class="title">
                <h1>
                    我的 asp.net 應用程序之-多文件上傳+超大附件上傳
                </h1>
            </div>
            <div class="loginDisplay">
                -by Leon</div>
            <div class="clear hideSk
                <asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" 
                    EnableViewState="false" IncludeStyleBlock="false" Orientation="Horizontal" 
                   >
                    <Items>
                        <asp:MenuItem NavigateUrl="~/Default.aspx" Text="上傳"/>
                        <asp:MenuItem NavigateUrl="~/Download.aspx" Text="下載"/>
                    </Items>
                </asp:Menu>
            </div>
        </div>
        <div class="main">
            <asp:ContentPlaceHolder ID="MainContent" runat="server"/>
        </div>
        <div class="clear">
        </div>
    </div>
    <div class="footer">
        
    </div>
    </form>
</body>
</html>
 

2、Default.aspx 上傳頁面
<%@ Page Title="文件上傳與下載" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="upAndDown._Default" %>
 
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <h2>
        上傳文件到服務器</h2>
<h2>
        <asp:FileUpload ID="FileUpload1" runat="server" />
    </h2>
<p>
        <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="上傳" style="margin-left:170px;" />
    </p>
</asp:Content>


3、Default.aspx.cs 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace upAndDown
{
    public partial class _Default : System.Web.UI.Page
    {
        PRotected void Page_Load(object sender, EventArgs e)
        {
 
        }
 
        public Boolean UpLoad(string path, FileUpload fileupload) 
        {
            bool fileOK = false;
            if(fileupload.HasFile)
            {
                string fileException = System.IO.Path.GetExtension(fileupload.FileName).ToLower();
                
                //上傳文件的格式
                string[] allowedException = {".xls",".doc",".mp3",".rar",".zip",".vsd",".txt",".jpg",".gif",".bmp"
                                            ,".png",".swf",".avi",".mp3",".rm",".wma",".wmv",".exe"};
                for (int i = 0; i < allowedException.Length;i++ ) 
                {
                    if (fileException == allowedException[i]) 
                        fileOK = true;  //返回成功標識
                }
            }
            if (fileOK)     //判斷上傳的文件是否在指定的格式范圍之內(nèi)
            {
                //判斷文件是否存在,如不存在則創(chuàng)建路徑
                if (System.IO.Directory.Exists(path))
                {
                    //該目錄存在,則將上傳的文件保存在該目錄當中
                }
                else
                {
                    System.IO.Directory.CreateDirectory(path);      //創(chuàng)建文件路徑
                }
                fileupload.SaveAs(path + "http://" + fileupload.FileName.Trim().Replace(" ",""));   //去掉文件名字符空格,執(zhí)行文件上傳操作
                Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "name", "<script>alert('文件上傳成功!')</script>");
            }
            else 
            {
                Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert('hehh')", "<script>alert('不支持此格式文件上傳!')</script>");
            }
            return fileOK;
        }
 
        protected void Button1_Click(object sender, EventArgs e)
        {
            string FilePath = "";
            //是否有上傳文件
            if (this.FileUpload1.FileName != null && this.FileUpload1.FileName != "")
            {
                if (FileUpload1.PostedFile.ContentLength <= 0)
                {
                    Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert('hehh')", "<script>alert('上傳文件為空文件,請重新選擇!')</script>"); 
                    return;
                }
                else
                { 
                    if (this.FileUpload1.HasFile)
                    {
                        if (FileUpload1.PostedFile.ContentLength > 524288000)
                        {
                            Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "scriptName", "<script>alert('上傳文件過大!')</script>"); 
                            return;
                        }
                        else
                        {
                            FilePath = Server.MapPath("/Images"); //設置服務器路徑
                        }
 
                        UpLoad(FilePath, this.FileUpload1);//調(diào)用UpLoad()函數(shù)上傳文件
                       
                    }
                }
            }
 
            //如果上傳文件錯誤,則返回操作
            else 
            {
                Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "name", "<script>alert('文件為空,請先選擇要上傳的文件!')</script>"); 
                return;
            }
 
        }
 
    }
}

4、Download.aspx 下載頁面

<%@ Page Title="文件下載" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Download.aspx.cs" Inherits="upAndDown.Download" %>
 
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <h2 style="font-size: xx-large">
        從服務器上下載文件</h2>
    <p>
        <asp:ListBox ID="ListBox1" runat="server" Height="249px"  Width="541px">
        </asp:ListBox>
    </p>
    <embed style="filter: xray()" src="Images/GEM.mp3" width="188" height="68" type="audio/mp3"
                                                                loop="true" showstatusbar="true" autostart="true"/>
    <p>
        <asp:Button ID="Button1" runat="server" Font-Bold="True" Font-Size="Small" Font-Strikeout="False" Text="下載" onclick="Button1_Click" />
    </p>
</asp:Content>
 
5、Download.aspx.cs  
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace upAndDown
{
    public partial class Download : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            { 
                //頁面加載時,獲取下載文件的存放目錄
                string strfilepath = Server.MapPath("~/Images/");
                //創(chuàng)建目錄對象
                DirectoryInfo dir = new DirectoryInfo(strfilepath);
                //獲得該目錄下的所有文件
                FileSystemInfo[] files = dir.GetFileSystemInfos();
                //講遍歷的文件名稱顯示在ListBox控件中
                ListItem items;
                foreach (FileSystemInfo infofiles in files) 
                {
                    items = new ListItem();        //聲明一個ListItem對象
                    items.Text = infofiles.Name;
                    items.Value = infofiles.FullName;
                    ListBox1.Items.Add(items);     //向ListBox控件中添加數(shù)據(jù)信息
                }
            }
        }
 
 
 
        //<summary>
        //文件下載函數(shù)
        //</summary>
        //author Leon
        //<param name="fileURL">要下載文件所在的路徑</param>
        protected Boolean DownLoad(string fileURL)
        {
            Boolean Dok = false;
            try
            {
                string FullPathURL = Server.MapPath(fileURL);//獲取文件下載路徑
                System.IO.FileInfo file = new System.IO.FileInfo(FullPathURL);
                if (file.Exists)        //判斷要下載的文件是否存在
                {
                    Response.Clear();       //清空response對象中的內(nèi)容
                    //*修改前的做法
                    Response.AddHeader("Content-Disposition", "attachment;filename=" + file.Name);
                    //*修改后的做法
                    Response.AddHeader("Content-disposition", "attachment;filename=" + HttpUtility.UrlEncode(file.Name));
                    Response.AddHeader("Content-Length", file.Length.ToString());
                    Response.ContentType = "application/octet-stream";
                    Response.WriteFile(FullPathURL);      //通過對Response對象執(zhí)行下載文件的操作
                    Response.End();     //結(jié)束Response對象
                    Response.Flush();       //刷新Response對象
                    Response.Clear();       //清空response對象中的內(nèi)容
                    Dok = true;
                }
                else
                {
                    this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(),"success","<script>alert('文件不存在!')</script>");
                }
 
            }
            catch (Exception)
            {
                this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "success", "<script>alert('文件不存在!')</script>");
            }
            return Dok;
        }
 
        protected void Button1_Click(object sender, EventArgs e)
        {
            //獲取下載文件的路徑
            string downfiles;
            try
            {
                downfiles = "Images/" + ListBox1.SelectedItem.Text;
                DownLoad(downfiles);
            }
            catch (Exception)
            {
                this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "success", "<script>alert('選擇文件為空,請先選擇要下載的文件!')</script>");
            }
        }
    }
}
 

注:ASP.NET框架默認最大上傳文件為4M,如果要修改框架默認最大上傳文件大小, 需要到C:/Windows/Microsoft.NET/Framework/v4.0.30319/Config文件夾中修改machine.config文件,在<system.web> 標簽中加入或修改<httpRuntime maxRequestLength="4096000"/>的值。





發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 一级爱片 | 日本中文字幕电影在线观看 | wwwxxx国产 | 欧美成人理论片乱 | 国产午夜电影在线观看 | 亚洲第一精品在线 | 在线观看中文字幕av | 69性欧美高清影院 | 欧美××××黑人××性爽 | 香蕉久草视频 | 亚洲人成在线播放网站 | 亚洲精品成人在线视频 | 操操插插 | 成人男男视频拍拍拍在线观看 | 日韩一级视频 | 久久大陆| 桥本有菜免费av一区二区三区 | 久久精品中文字幕一区 | 亚洲午夜免费电影 | 毛片福利| 成人黄色网战 | 欧美日穴视频 | 今井夏帆av一区二区 | av免费在线不卡 | 欧美精品电影一区二区 | 久久嗨 | 亚洲一级电影在线观看 | 国产精品成人免费一区久久羞羞 | 成人爱爱电影 | 免费h片网站 | 日本中文字幕久久 | 中日无线码1区 | av免费不卡国产观看 | 最近免费观看高清韩国日本大全 | 日本羞羞影院 | 蜜桃精品视频 | 亚州综合网| 性大片1000免费看 | 伊人yinren22综合网色 | 久久蜜桃香蕉精品一区二区三区 | 一区二区精品在线 |