栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > asp

asp.net上传execl文件后,在页面上加载显示(示例代码)

asp 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

asp.net上传execl文件后,在页面上加载显示(示例代码)

复制代码 代码如下:
    #region 上传Execl文件
    protected void Button1_Click(object sender, EventArgs e)
    {
        if (FileUpload1.HasFile)
        {
            string NewFileName = string.Empty;
            string ErrorMess = UpLoadFile(FileUpload1, ".xls|.xlsx", 1024 * 5, Server.MapPath("/Report/SocialApply/"), 1, out NewFileName);
            if (string.IsNullOrEmpty(ErrorMess))
            {
                Label1.Text = "√文件上传成功";
                ViewState["UpLoadFile"] = "/Report/SocialApply/" + NewFileName;
                try
                {
                    FileStream file = new FileStream
                        (Server.MapPath(ViewState["UpLoadFile"] as string),
                        FileMode.Open, FileAccess.Read,
                        FileShare.ReadWrite);
                    DataTable dt1 = FairHR.Util.XmlExcelReport.ReadExcelToDataTable(file, 0, 0);

                    ViewState.Add("ViewDT", dt1);
                    GridView1.DataSource = ViewState["ViewDT"] as DataTable;
                    GridView1.DataBind();
                    file.Close();
                    //Maticsoft.Common.MessageBox.Responsescript(Page, "$.messager.alert('系统提示', '操作成功!', 'info');");
                }
                catch
                {
                    Maticsoft.Common.MessageBox.Responsescript(Page, "$.messager.alert('系统提示', '请重新上传Execl文件再操作', 'warning');");
                }
            }
            else
            {
                Label1.Text = "×文件上传失败";
            }
        }
        else
        {
            Label1.Text = "×请先选择上传文件";
        }
        scriptManager.RegisterClientscriptBlock(Page, this.GetType(), "idalert1", "closeLoad();", true);
    }
    #endregion

    #region 上传文件
    ///


    /// 上传文件
    ///

    /// 上传文件
    /// 上传文件类型,例如.jpg|.gif|.bmp
    /// 限制上传文件大小,单位为k
    /// 上传路径,需使用server.mappath
    /// 1为自动命名,0用原名
    ///
    public static string UpLoadFile(FileUpload fu, string type, int size, string path, int nametype, out string newFileName)
    {
        newFileName = null;
        string erorr = null;
        int Size = fu.PostedFile.ContentLength / 1024;
        if (Size > size)
        {
            erorr = "上传文件太大!";
            return erorr;
        }
        string Type = fu.FileName;
        if (Type.IndexOf(".") == -1) { erorr = "上传文件类型有误!"; return erorr; }
        Type = Type.Substring(Type.LastIndexOf(".")).ToUpper();
        type = type.ToUpper();
        if (type.IndexOf(Type) == -1) { erorr = "上传文件类型有误!"; return erorr; }

        string filename = "";
        if (nametype == 1)
        {
            string nowdate = DateTime.Now.ToString();
            nowdate = nowdate.Replace(":", "").Replace(" ", "").Replace("-", "").Trim();
            Random r = new Random();
            int a = r.Next(1000);
            filename = nowdate + a.ToString() + Type;
            newFileName = filename;
        }
        else
        {
            filename = fu.FileName;
            if (System.IO.File.Exists(path + filename)) { erorr = "此文件名已经存在!"; return erorr; }
        }

        fu.SaveAs(path + filename);
        return erorr;//返回有错的错误信息,没有错误返回null
    }
    #endregion

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/57206.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号