using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace veeb1 { public partial class leht2 : System.Web.UI.Page { string failikoht; protected void Page_Load(object sender, EventArgs e) { failikoht = Server.MapPath("~/App_Data/eesnimed1.txt"); loeAndmed(); } void loeAndmed() { string[] eesnimed = File.ReadAllLines(failikoht); GridView1.DataSource = eesnimed; GridView1.DataBind(); } protected void Button1_Click(object sender, EventArgs e) { File.AppendAllText(failikoht, TextBox1.Text + "\r\n"); loeAndmed(); //Kontrollige, et lisatav tekst poleks tühi //Pärast lisamist tühjendage tekstikast // + kui toimib } } }