asp.net文件读取和修改保存练习

本文介绍了一个使用C#实现的基本文件读写操作案例,包括从指定目录中读取所有.txt文件,并通过DropDownList展示文件名供用户选择。用户可以读取文件内容到TextBox并进行编辑保存。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

cs代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;

public partial class 文件读取 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            string[] arrs = Directory.GetFiles(MapPath("files"), "*.txt");//Directory
            ///获取路径
            //foreach (string _s in arrs)
            //{


            //    Response.Write(_s + "<br/>");//读取完整物理路径

            //}
            //Response.Write("-----------------------------------------------------------------------" + "<br/>");
            //foreach (string _s in arrs)
            //{

            //    string _fname = Path.GetFileName(_s);//path类下的GetFileName
            //    Response.Write(_fname + "<br/>");//读取文件名


            //}
            //Response.Write("-----------------------------------------------------------------------" + "<br/>");
            //foreach (string _s in arrs)
            //{


            //    string _fname1 = Path.GetFileNameWithoutExtension(_s);
            //    Response.Write(_fname1 + "<br/>");//不带扩展名的文件名

            //}
            ListItem li;
            foreach (string _s in arrs)
            {
                li = new ListItem();
                string fname = Path.GetFileName(_s);
                li.Text = fname;
                DropDownList1.Items.Add(li);

            }
        }
        


    }
    protected void btn_read_Click(object sender, EventArgs e)
    {
        string _fname = DropDownList1.SelectedValue;
        //Response.Write(_fname);
        string _path =Path.Combine( MapPath("files"),_fname);
      
        if(File.Exists(_path)){//判断是否存在,重要步骤
            TextBox1.Text = File.ReadAllText(_path);//读取显示
        

    }
    }
    protected void btn_save_Click(object sender, EventArgs e)
    {
        string _fname = DropDownList1.SelectedValue;//获取下拉框选择项
        //Response.Write(_fname);
        string _path = Path.Combine(MapPath("files"), _fname);//拼路径
        string _content = TextBox1.Text;//获取文本框内容
        File.WriteAllText(_path,_content);//写入源文件


    }
}
aspx代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="文件读取.aspx.cs" Inherits="文件读取" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
        <asp:DropDownList ID="DropDownList1" runat="server">
        </asp:DropDownList>
        <asp:Button ID="btn_read" runat="server" Text="读取" onclick="btn_read_Click" />
        <asp:Button ID="btn_save" runat="server" Text="保存" onclick="btn_save_Click" />
        <br />
        <asp:TextBox ID="TextBox1" runat="server" Height="216px" Width="218px" TextMode="MultiLine"></asp:TextBox>
    
    </div>
    </form>
</body>
</html>
效果如图:




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值