您的位置:首页 > 编程语言 > ASP

asp.net实现上传文件显示本地绝对路径的实例代码

2018-10-12 13:56 1086 查看
页面代码主要就是JS
view plaincopy to clipboardprint

<head runat="server">
    <title>无标题页</title>
    <mce:script language="javascript" type="text/javascript"><!-- 
    function Imagesrc() 
    { 
    document.getElementById("image").src=document.all.FileUpload1.value; 
    }    
// --></mce:script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <img alt="\" id="image"  style="height:50px;width:50px" />
        <asp:FileUpload ID="FileUpload1" runat="server" onchange="Imagesrc()" />
        <br />
        <asp:Button ID="btnPost" runat="server"
            Text="上传" OnClick="btnPost_Click" /></div>
    </form>
</body>
<head runat="server">
    <title>无标题页</title>
    <mce:script language="javascript" type="text/javascript"><!--
    function Imagesrc()
    {
    document.getElementById("image").src=document.all.FileUpload1.value;
    }
// --></mce:script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <img alt="\" id="image"  style="height:50px;width:50px" />
        <asp:FileUpload ID="FileUpload1" runat="server" onchange="Imagesrc()" />
        <br />
        <asp:Button ID="btnPost" runat="server"
            Text="上传" OnClick="btnPost_Click" /></div>
    </form>
</body>

defualt.aspx.cs代码
view plaincopy to clipboardprint

protected void btnPost_Click(object sender, EventArgs e) 
   { 
       string PostName = Server.MapPath("Image"); 
       string fileName = FileUpload1.FileName; 
       //是否包含此文件 
       if (FileUpload1.HasFile) 
       { 
           FileUpload1.SaveAs(PostName "/" fileName);            
       } 
   }

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: