91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么實現asp.net上傳execl文件后在頁面上加載顯示

發布時間:2021-09-18 11:32:12 來源:億速云 閱讀:81 作者:chen 欄目:開發技術

這篇文章主要介紹“怎么實現asp.net上傳execl文件后在頁面上加載顯示”,在日常操作中,相信很多人在怎么實現asp.net上傳execl文件后在頁面上加載顯示問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么實現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 上傳文件    /// <summary>    /// 上傳文件    /// </summary>    /// <param name="fu">上傳文件</param>    /// <param name="type">上傳文件類型,例如.jpg|.gif|.bmp</param>    /// <param name="size">限制上傳文件大小,單位為k</param>    /// <param name="path">上傳路徑,需使用server.mappath</param>    /// <param name="nametype">1為自動命名,0用原名</param>    /// <returns></returns>    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

到此,關于“怎么實現asp.net上傳execl文件后在頁面上加載顯示”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

杭锦后旗| 洪江市| 嘉黎县| 读书| 阿拉善左旗| 怀远县| 邯郸市| 塔河县| 通道| 固始县| 监利县| 湖口县| 顺平县| 大冶市| 阿荣旗| 宁乡县| 长子县| 龙井市| 佳木斯市| 平武县| 万安县| 贡嘎县| 富阳市| 孟州市| 宜丰县| 十堰市| 绩溪县| 盐亭县| 南靖县| 密云县| 盘山县| 时尚| 华亭县| 綦江县| 南召县| 仪征市| 保亭| 巧家县| 丽水市| 砚山县| 隆尧县|