ساخت یک فایل Text در Asp.net
ما یک فایل text داریم که میخواهیم اطلاعاتی را در آن ذخیره کنیم و هر بار اطلاعات به زیر اطلاعات قبلی اضافه شود.
تکه کد زیر به شرح زیر است
try
{
string path = @"d:\temp\MyTest.txt";
// Create a string array with the additional lines of text
string[] lines = { "Username: " + Username, "Password: " + Password, "UserIMI: " + UserIMI, "----------------------- " };
// Append new lines of text to the file
File.AppendAllLines(path,lines);
}
catch (Exception)
{
}