• 列出文件夹下文件列表,显示,删除


    using System.IO;
    using System.Collections;

    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                ArrayList arylst = new ArrayList();
                string filepath = Server.MapPath("list");
                DirectoryInfo info = new DirectoryInfo(filepath);
                FileInfo[] fileinfo = info.GetFiles();
                foreach (FileInfo allfile in fileinfo)
                {
                    arylst.Add(allfile);
                }
                this.ListBox1.DataSource = arylst;
                this.ListBox1.DataBind();

            }
        }
    }

     protected void btnView_Click(object sender, EventArgs e)
        {
            Response.Redirect("list/" + this.ListBox1.SelectedValue);
        }
        protected void btnDelete_Click(object sender, EventArgs e)
        {
            string filepath = Server.MapPath("list/");
            File.Delete(filepath + this.ListBox1.SelectedValue);
            Response.Write("<script>alert('页面删除成功!');location='Default.aspx'</script>");
        }

    天道酬勤,厚积薄发。 君子之行,静以修身,俭以养德。 非淡泊无以明志,非宁静无以致远。 如有恒,何须三更起,半夜眠;最怕莫,三天打鱼两天晒网,竹篮打水一场空。
  • 相关阅读:
    【CTF杂项】常见文件文件头文件尾格式总结及各类文件头
    修复XSS跨站漏洞
    XSS高级利用
    i春秋-百度杯十月场-EXEC
    i春秋-百度杯十月场-vld
    i春秋-百度杯十月场-fuzzing
    阿里云轻量应用服务器debian8.9用apache多端口搭建多站点
    Hdu 1873 看病要排队
    Hdu 1870 愚人节的礼物
    Hdu 1864 最大报销额
  • 原文地址:https://www.cnblogs.com/houweidong/p/3439109.html
Copyright © 2020-2023  润新知