Convertire un file uplodato in una stringa
Un esempio C# per convertire un file uplodato in stringa
C#
// using System.IO
// using System.Web
// dove fUpload è un oggetto che rappresenta il file uplodato (System.Web.HttpPostedFile)
string s = "";
//using (StreamReader rdr = new StreamReader(strm, System.Text.Encoding.Unicode))
using (StreamReader rdr = new StreamReader(fUpload.InputStream, true))
{
s = rdr.ReadToEnd();
}