溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么實(shí)現(xiàn)asp.net上傳execl文件后在頁面上加載顯示

發(fā)布時(shí)間:2021-09-18 11:32:12 來源:億速云 閱讀:76 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要介紹“怎么實(shí)現(xiàn)asp.net上傳execl文件后在頁面上加載顯示”,在日常操作中,相信很多人在怎么實(shí)現(xiàn)asp.net上傳execl文件后在頁面上加載顯示問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”怎么實(shí)現(xiàn)asp.net上傳execl文件后在頁面上加載顯示”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

復(fù)制代碼 代碼如下:

    #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('系統(tǒng)提示', '操作成功!', 'info');");                }                catch                {                    Maticsoft.Common.MessageBox.ResponseScript(Page, "$.messager.alert('系統(tǒng)提示', '請(qǐng)重新上傳Execl文件再操作', 'warning');");                }            }            else            {                Label1.Text = "×文件上傳失敗";            }        }        else        {            Label1.Text = "×請(qǐng)先選擇上傳文件";        }        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為自動(dòng)命名,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 = "此文件名已經(jīng)存在!"; return erorr; }        }
        fu.SaveAs(path + filename);        return erorr;//返回有錯(cuò)的錯(cuò)誤信息,沒有錯(cuò)誤返回null    }    #endregion

到此,關(guān)于“怎么實(shí)現(xiàn)asp.net上傳execl文件后在頁面上加載顯示”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI