博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.net 里怎么对fileUpload控件上传的文件进行管理
阅读量:5955 次
发布时间:2019-06-19

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

using System.IO;protected void Page_Load(object sender, EventArgs e){if (!IsPostBack)        {            BindFileName();        }}    public void BindFileName()    {        DropDownList1.Items.Clear();        string path = Server.MapPath("你的文件夹的路径");        DirectoryInfo di = new DirectoryInfo(path);        foreach (FileInfo fi in di.GetFiles())        {            ListItem li = new ListItem();            li.Value = fi.FullName;            li.Text = fi.Name;            DropDownList1.Items.Add(li);        }    }//把文件夹里的文件名绑定到DropDownList1protected void Button3_Click(object sender, EventArgs e)    {//这里是删除按钮        File.Delete(DropDownList1.SelectedValue);        BindFileName();        Response.Write("");    }

转载于:https://www.cnblogs.com/Lin267307031/archive/2012/09/08/2676702.html

你可能感兴趣的文章
Atom 编辑器系列视频课程
查看>>
C#三种定时器
查看>>
范数 L1 L2
查看>>
协同过滤及大数据处理
查看>>
Java8 本地DateTime API
查看>>
jQuery 增加 删除 修改select option
查看>>
[原][osgearth]osgearthviewer读取earth文件,代码解析(earth文件读取的一帧)
查看>>
springboot 常用插件
查看>>
一个基于特征向量的近似网页去重算法——term用SVM人工提取训练,基于term的特征向量,倒排索引查询相似文档,同时利用cos计算相似度...
查看>>
[转]Newtonsoft.Json高级用法
查看>>
Spring+SpringMVC+MyBatis+easyUI整合基础篇(一)项目简述及技术选型介绍
查看>>
DFI、DPI技术
查看>>
hibernate 执行存储过程 方法
查看>>
RapidIOIP核的验证方法研究_王玉欢
查看>>
崩溃日志的实例
查看>>
base64是啥原理
查看>>
字符串中去除连续相同的字符保留一个
查看>>
实战 Windows Server 2012 群集共享卷
查看>>
CSS 元素超出部分滚动, 并隐藏滚动条
查看>>
React中那些纠结你的地方(一)
查看>>