asp.net文件上传

 1.html
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            单文件上传
            <br />
            <br />
            <input id="File1" runat="server" type="file" />
            <br />
            <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
            <br />
            <asp:Label ID="LblMsg" runat="server" Height="256px" Width="100%"></asp:Label>
        </div>
    </form>
</body>
</html>

2.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 other_ShangChuan1 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        { }
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        if (File1.PostedFile.FileName != "")
        {
            //上传文件的绝对路径 如:C:\12.jpg
            string sFile = File1.PostedFile.FileName;

            //获取文件全名 例:12.jpg
            sFile = sFile.Substring(sFile.LastIndexOf("\\") + 1);

            //获取后缀名 例 .jpg
            sFile = sFile.Substring(sFile.LastIndexOf("."));

            //为了防止重名,获得日期为文件名  年月日时分秒毫秒
            string datatime = System.DateTime.Now.ToString("yyyMMddHHmmssffff");
            
            //上传后文件的新名
            sFile = datatime + sFile;

            //AppDomain.CurrentDomain.BaseDirectory.ToString() 获取此项目的根目录
            //sPath 获取上传后的路径
            string sPath = AppDomain.CurrentDomain.BaseDirectory.ToString() + "uploads\\" + sFile;
            
            //上传文件
            File1.PostedFile.SaveAs(sPath);

            this.LblMsg.Text = "文件已经上传到:" + sPath;
            this.LblMsg.Text += "<br/>上传文件名称:" + this.File1.PostedFile.FileName;
            this.LblMsg.Text += "<br/>上传文件类型:" + this.File1.PostedFile.ContentType;
            this.LblMsg.Text += "<br/>上传文件大小:" + this.File1.PostedFile.ContentLength + "Byte";
        }
        else
        {
            this.LblMsg.Text = "请选择需要上传的文件?";
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值