真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#asp.net實(shí)現(xiàn)文件上傳

前端代碼:

使用visual studio開發(fā)實(shí)現(xiàn)文件上傳

前端頁(yè)面代碼:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="scientist.WebForm1" %>





    
    var baseText = null; 
    function upOpen() {
        var xzOpen = document.getElementById("xzOpen");
        xzOpen.style.top = "200px"; //窗口距離瀏覽器內(nèi)容區(qū)最上方的偏移值 
        xzOpen.style.left = "500px"; //窗口距離瀏覽器內(nèi)容區(qū)最左邊的偏移值 
        xzOpen.style.width = "500px"; //窗口的寬度 
        xzOpen.style.height = "300px"; //窗口的高度
        if (baseText == null) baseText = xzOpen.innerHTML;
        xzOpen.innerHTML = baseText + "Close window
"         var sbar = document.getElementById("statusbar");          sbar.style.marginTop = (parseInt(100)-20) + "px";         xzOpen.style.visibility = "visible";      document.getElementById("xzOpen").click();     }  上傳文檔   *{ margin:0; padding:0;}  .exDiv{} .boxmain{float:left;margin-right:0px;width:100%;}  .xzOpen{position: absolute; visibility: hidden; overflow: hidden; border:2px solid #CCC; background-color: #FFCBB3; border:2px solid #333; padding:5px; } .F1{float:left;margin-top:5px;} .B1{float:right;margin-top:80px;} .left{position:absolute;left:0; background:#BBFFBB;height:300px;width:20%}  .main{margin-right:200px;background:#79FF79; height:300px;;width:100%;margin-left:auto;}  .up{margin-right:1px;background:#984B4B; height:30px;width:64px; margin-left:0px;     }                 上傳文件     
                                    
                                                         main                       選擇文件       后臺(tái)C#部分: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace scientist {     public partial class WebForm1 : System.Web.UI.Page     {         protected void Page_Load(object sender, EventArgs e)         {         }         protected void Button1_Click(object sender, EventArgs e)         {             HttpPostedFile postedFile = this.FileUpload1.PostedFile; //獲取到要上傳的文件             String fileName = "";//文件名             String filePath = "filesNameTest/";//文件保存路徑             fileName = System.IO.Path.GetFileName(postedFile.FileName);//獲取文件名稱             if (System.IO.Directory.Exists(Server.MapPath(filePath)) == false)//判斷文件夾是否存在             {                 System.IO.Directory.CreateDirectory(Server.MapPath(filePath));//如果不存在就創(chuàng)建file文件夾             }             if (System.IO.File.Exists(Server.MapPath(filePath+fileName)) == true)//判斷同名文件是否存在             {                 Page.ClientScript.RegisterStartupScript(this.GetType(), "message", "alert('同名文件已存在')", true);//彈窗提示文件已存在             }             else//文件不存在則保存文件             {                 if (fileName != "")//判斷前端是否有文件傳過(guò)來(lái)                 {                     String fileSuffix = System.IO.Path.GetExtension(fileName); //獲取上傳文件的擴(kuò)展名                     postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath(filePath) + fileName);//保存文件至根目錄下的files文件夾里                     Page.ClientScript.RegisterStartupScript(this.GetType(), "message", "alert('已經(jīng)保存成功')", true);//彈窗提示保存成功                 }                 else                 {                     Page.ClientScript.RegisterStartupScript(this.GetType(), "message", "alert('請(qǐng)選擇文件')", true);//彈窗提示未選擇文件                 }             }         }     } }
標(biāo)題名稱:C#asp.net實(shí)現(xiàn)文件上傳
地址分享:http://weahome.cn/article/jdopsh.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部