好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁(yè) > 知識(shí)庫(kù) > asp.net上傳execl文件后,在頁(yè)面上加載顯示(示例代碼)

asp.net上傳execl文件后,在頁(yè)面上加載顯示(示例代碼)

熱門(mén)標(biāo)簽:云狐人工智能電話(huà)機(jī)器人 宿遷智能外呼系統(tǒng)排名 廣州銷(xiāo)售外呼系統(tǒng)定制 400電話(huà)辦理信任翰諾科技 怎樣給陜西地圖標(biāo)注顏色 電銷(xiāo)機(jī)器人 數(shù)據(jù) ai電銷(xiāo)機(jī)器人對(duì)貸款有幫助嗎 地圖標(biāo)注多少錢(qián)一張 福州人工智能電銷(xiāo)機(jī)器人加盟

復(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">上傳文件類(lèi)型,例如.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 = "上傳文件類(lèi)型有誤!"; return erorr; }
        Type = Type.Substring(Type.LastIndexOf(".")).ToUpper();
        type = type.ToUpper();
        if (type.IndexOf(Type) == -1) { erorr = "上傳文件類(lèi)型有誤!"; 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ò)誤信息,沒(méi)有錯(cuò)誤返回null
    }
    #endregion

您可能感興趣的文章:
  • Asp.NET頁(yè)面中事件加載的先后順序詳解

標(biāo)簽:新疆 焦作 宜春 大興安嶺 綿陽(yáng) 延安 曲靖 黃南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net上傳execl文件后,在頁(yè)面上加載顯示(示例代碼)》,本文關(guān)鍵詞  asp.net,上傳,execl,文件,后,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net上傳execl文件后,在頁(yè)面上加載顯示(示例代碼)》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于asp.net上傳execl文件后,在頁(yè)面上加載顯示(示例代碼)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章