博客
关于我
asp.net代码练习 work016 fileupload文件上传
阅读量:296 次
发布时间:2019-03-03

本文共 1254 字,大约阅读时间需要 4 分钟。

webform1.aspx

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

webform1.aspx.cs

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace work016{    public partial class WebForm1 : System.Web.UI.Page    {        protected void Page_Load(object sender, EventArgs e)        {        }        protected void Button1_Click(object sender, EventArgs e)        {            //判断是否上传文件,如果是txt之类的文件,0字节也认为是没有文件            if (FileUpload1.HasFile)            {                //通过相对路径,获取到服务器的绝对路径                string savePath = Server.MapPath("~/upload");                //路径不存在,创建                if (!System.IO.Directory.Exists(savePath))                {                    System.IO.Directory.CreateDirectory(savePath);                }                //路径后,加上文件名                savePath = savePath + string.Format("\\{0}",FileUpload1.FileName);                //保存                FileUpload1.SaveAs(savePath);                //提示                Literal1.Text = string.Format("upload/{0}",FileUpload1.FileName);            }        }    }}

 

转载地址:http://firm.baihongyu.com/

你可能感兴趣的文章
基于DFA算法实现文章敏感词过滤
查看>>
Git commit代码后撤销方法
查看>>
数据结构与算法学习1-----稀疏数组
查看>>
java手动实现JWT(我和别人的不一样)
查看>>
LetCode刷题记录--No3-无重复字符的最长子串
查看>>
Java转换xml格式时间 (yyyy-MM-ddTHH:mm:ss.SSSZ)
查看>>
Python 使用 __getstate__ 和 __setstate__ 魔法方法
查看>>
hook钩子介绍
查看>>
关于json
查看>>
焦点事件
查看>>
webpack打包常见报错
查看>>
vuex—1vuex初始
查看>>
axios服务器通信—1axios介绍和使用mock数据
查看>>
web前端面试一从输入url到看到页面发生了什么
查看>>
关于IP地址
查看>>
IO复用之epoll
查看>>
智慧水利的泵站自动化监控系统解决方案
查看>>
C getopt.h
查看>>
TensorRT/parsers/caffe/caffeParser/caffeParser.h源碼研讀
查看>>
PCL MLS論文Computing and Rendering Point Set Surfaces研讀筆記
查看>>