View Full Version : معادل تابع file_get_contents در Asp.Net
merman.2006
شنبه 21 اسفند 1389, 18:48 عصر
سلام
در Php تابعی به نام file_get_contents داریم که url هم میگیره، کسی میدونه معادل این تابع در Asp.Net چی هستش؟
merman.2006
سه شنبه 24 اسفند 1389, 11:44 صبح
انگار کسی از دوستان نتونست چیزی پیدا کنه! ولی خودم پید کردم
protected string file_get_contents(string fileName)
{
string sContents = string.Empty;
if (fileName.ToLower().IndexOf("http:") > -1)
{ // URL
System.Net.WebClient wc = new System.Net.WebClient();
byte[] response = wc.DownloadData(fileName);
sContents = System.Text.Encoding.ASCII.GetString(response);
}
else
{ // Regular Filename
System.IO.StreamReader sr = new System.IO.StreamReader(fileName);
sContents = sr.ReadToEnd();
sr.Close();
}
return sContents;
}
merman.2006
چهارشنبه 25 اسفند 1389, 10:15 صبح
protectedstring file_get_contents(string fileName)
{
string sContents = string.Empty;
if (fileName.ToLower().IndexOf("http:") > -1)
{ // URL
System.Net.WebClient wc = new System.Net.WebClient();
byte[] response = wc.DownloadData(fileName);
sContents = System.Text.Encoding.ASCII.GetString(response);
}
else
{ // Regular Filename
System.IO.StreamReader sr = new System.IO.StreamReader(fileName);
sContents = sr.ReadToEnd();
sr.Close();
}
return sContents;
}
vBulletin® v4.2.5, Copyright ©2000-1404, Jelsoft Enterprises Ltd.