[C#]다운로드 Method C# 2008. 9. 30. 18:05

public void Download(string downURL) {  
   System.Net.WebClient request = new System.Net.WebClient();
   byte[] newFileData = request.DownloadData(downURL);
   string fileString = System.Text.Encoding.UTF8.GetString(newFileData);
   Response.Write(fileString);
}

-_-a 웹 클라이언트를 통한.. 파일 데이터 다운로드라 해야하나.. -_-a

뭐 그런 취지로 만든 것이답.