Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi , i am new to .net
file can be uploaded using fileupload control and wat i want to do :i want to view the uploaded file contents in textbox but it should not show in encoded ascii should show in original file content file may be doc,docx,text etc.
i had tried with
C#
StreamReader r = new StreamReader(fupResume.FileContent, UnicodeEncoding.GetEncoding("UTF-8"));

and
C#
StreamReader r = new StreamReader(fupResume.FileContent, Encode.Default));

But still i get the same result should show the original content
Posted
Updated 25-May-12 9:56am
v3
Comments
ZurdoDev 25-May-12 11:23am    
removed sql code tags.
Keith Barrow 27-May-12 10:06am    
Just a thought: have you made sure the response is correctly encoded, the conversion could be happening there.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900