本文共 1177 字,大约阅读时间需要 3 分钟。
webform1.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="test14_6.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 test14_6{ public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { string path = Server.MapPath("test.txt"); string title = TextBox1.Text; string word = TextBox2.Text; System.IO.FileInfo file = new System.IO.FileInfo(path); if (file.Exists == false) { System.IO.StreamWriter write1 = file.CreateText(); write1.WriteLine(title); write1.WriteLine(word); write1.Flush(); write1.Close(); lblTips.Text = "创建文件并写入数据成功!"; } } }}
转载地址:http://kdrm.baihongyu.com/