午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    asp.net上傳execl文件后,在頁面上加載顯示
    來源:易賢網(wǎng) 閱讀:729 次 日期:2014-10-11 13:50:51
    溫馨提示:易賢網(wǎng)小編為您整理了“asp.net上傳execl文件后,在頁面上加載顯示”,方便廣大網(wǎng)友查閱!

    本篇文章主要是對(duì)asp.net上傳execl文件后,在頁面上加載顯示(示例代碼)進(jìn)行了介紹,需要的朋友可以過來參考下,希望對(duì)大家有所幫助

    代碼如下:

    #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

    更多信息請(qǐng)查看IT技術(shù)專欄

    更多信息請(qǐng)查看網(wǎng)絡(luò)編程
    易賢網(wǎng)手機(jī)網(wǎng)站地址:asp.net上傳execl文件后,在頁面上加載顯示
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

    2025國考·省考課程試聽報(bào)名

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)