Click here to Skip to main content
15,895,462 members
Home / Discussions / C#
   

C#

 
GeneralRe: How do I create a command window/console? Pin
se99ts11-Feb-03 10:00
se99ts11-Feb-03 10:00 
GeneralRe: How do I create a command window/console? Pin
se99ts11-Feb-03 9:59
se99ts11-Feb-03 9:59 
GeneralCurious about C# and desktop apps Pin
John Mautari11-Feb-03 3:45
John Mautari11-Feb-03 3:45 
GeneralRe: Curious about C# and desktop apps Pin
Stephane Rodriguez.11-Feb-03 4:14
Stephane Rodriguez.11-Feb-03 4:14 
GeneralRe: Curious about C# and desktop apps Pin
TigerNinja_11-Feb-03 8:18
TigerNinja_11-Feb-03 8:18 
GeneralRe: Curious about C# and desktop apps Pin
Stephane Rodriguez.11-Feb-03 8:44
Stephane Rodriguez.11-Feb-03 8:44 
GeneralRe: Curious about C# and desktop apps Pin
jpwkeeper11-Feb-03 9:01
jpwkeeper11-Feb-03 9:01 
GeneralRe: Curious about C# and desktop apps Pin
John Mautari11-Feb-03 9:34
John Mautari11-Feb-03 9:34 
GeneralRe: Curious about C# and desktop apps Pin
Furty12-Feb-03 19:59
Furty12-Feb-03 19:59 
GeneralError Creating Window Handle Pin
jpwkeeper11-Feb-03 1:51
jpwkeeper11-Feb-03 1:51 
GeneralRe: Error Creating Window Handle Pin
perlmunger11-Feb-03 5:00
perlmunger11-Feb-03 5:00 
GeneralRe: Error Creating Window Handle Pin
leppie11-Feb-03 6:05
leppie11-Feb-03 6:05 
GeneralRe: Error Creating Window Handle Pin
jpwkeeper11-Feb-03 8:57
jpwkeeper11-Feb-03 8:57 
GeneralRe: Error Creating Window Handle Pin
leppie11-Feb-03 9:35
leppie11-Feb-03 9:35 
GeneralRe: Error Creating Window Handle Pin
leppie11-Feb-03 9:39
leppie11-Feb-03 9:39 
GeneralAccesing a CORBA object from C# Pin
Giles11-Feb-03 0:57
Giles11-Feb-03 0:57 
GeneralTreeNode Pin
sss_dr11-Feb-03 0:40
sss_dr11-Feb-03 0:40 
GeneralRe: TreeNode Pin
Stephane Rodriguez.11-Feb-03 0:46
Stephane Rodriguez.11-Feb-03 0:46 
GeneralRe: TreeNode Pin
Jim Stewart14-Feb-03 6:45
Jim Stewart14-Feb-03 6:45 
Generalc# LDAP Pin
Member 97442011-Feb-03 0:14
Member 97442011-Feb-03 0:14 
GeneralRe: c# LDAP Pin
Richard Deeming11-Feb-03 0:23
mveRichard Deeming11-Feb-03 0:23 
GeneralWebResponse/WebRequest problem Pin
Keith Iveson11-Feb-03 0:06
Keith Iveson11-Feb-03 0:06 
The following code loads the contents of a web page (Page) into string PageText:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(new Uri(Page, true));<br />
request.Method = "GET";<br />
<br />
HttpWebResponse response = (HttpWebResponse) request.GetResponse();<br />
Stream responseStream = response.GetResponseStream();<br />
StreamReader reader = new StreamReader(responseStream);<br />
string PageText = reader.ReadToEnd();


The problem I have is that the page I receive comes back with encoding that doesn't show up correctly in a text box. For example a single quote comes back as & # 8 2 1 7 ; (without the spaces). I think that this would be correctly displayed in a HTML viewer, but how do I get it to display correctly in a text box?

Putting an encoding in the constructor for the StreamReader seems to make no difference.

Thanks in advance,

Keith Smile | :)
GeneralRe: WebResponse/WebRequest problem Pin
Chad Young11-Feb-03 2:36
Chad Young11-Feb-03 2:36 
GeneralRe: WebResponse/WebRequest problem Pin
Keith Iveson11-Feb-03 22:33
Keith Iveson11-Feb-03 22:33 
GeneralRe: WebResponse/WebRequest problem Pin
John Mautari11-Feb-03 3:10
John Mautari11-Feb-03 3:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.