نحوه دانلود فایل متنی در برنامه نویسی #C
در این مثال قصد داریم که یک متنی را در داخل برنامه توسط برنامه نویسی سی شارپ تولید کنیم و کاربر نهایی بتواند آن را دانلود کند.
string text="1,12154 \n 45545,واریز بهمن, \n sdfa,48575,kjdk ";
StringWriter ObjStringWrite=new StringWriter ();
ObjStringWrite.Write (text);
// Response.ContentType="application/ocetet-stream"; //For Excel
Response.ContentType = "text/plain"; //For Text File
//Response.AddHeader ("content-disposition","attachment;filename="+"test.txt");
Response.AddHeader ("content-disposition","attachment;filename=test.txt");
Response.Clear ();
using (StreamWriter ObjStramWriter=new StreamWriter (Response.OutputStream,Encoding.UTF8))
{
ObjStramWriter.Write (ObjStringWrite.ToString());
Response.End ();
}