Is it possible to read the content of a file using Fileupload.
For example I want to save the XML file in Database , a user search the file using Fileupload and then
string inputContent; using (StreamReader inputStreamReader = new StreamReader(InputFileUpload.PostedFile.InputStream)) { inputContent = inputStreamReader.ReadToEnd(); }