p2p.wrox.com Forums

Need to download code?

View our list of code downloads.


Go Back   p2p.wrox.com Forums > Visual Basic > VB 6 Visual Basic 6 > VB.NET
I forgot my password Register Now
Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
VB.NET General VB.NET discussions for issues that don't fall into other VB.NET forums.

Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB.NET section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.

Reply
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old December 21st, 2004, 05:37 AM
Friend of Wrox
Points: 386, Level: 6
Points: 386, Level: 6 Points: 386, Level: 6 Points: 386, Level: 6
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jun 2003
Location: , , Denmark.
Posts: 184
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Jonax
Default Getting correct encoding from a webresponse

Hi guys,

I have the following code that retrieves a webpage.
My problem is getting it to use the right encoding.
I've tested it against a danish page, but it won't show the danish characters. When I set it to sniff the encoding (using
Code:
            sr = New System.IO.StreamReader(strm, True)
) it sets it to UTF8, but when I browse the page using MSIE with auto-selection of encoding, it uses Western European (and displays the danish chars correctly).

Any ideas?

The code:
Code:
            ' Create a new WebRequest Object to the mentioned URL.
            Dim myWebRequest As System.Net.WebRequest = System.Net.WebRequest.Create(txtUrl.Text)

            ' Set the 'Timeout' property in Milliseconds.
            myWebRequest.Timeout = 10000

            Dim encode As System.Text.Encoding = System.Text.Encoding.GetEncoding("Unicode")

            ' Assign the response object of 'WebRequest' to a 'WebResponse' variable.
            Dim myWebResponse As System.Net.WebResponse = myWebRequest.GetResponse()
            Dim strm As System.IO.Stream
            Dim sr As System.IO.StreamReader
            Dim line As String

            strm = myWebResponse.GetResponseStream()

            sr = New System.IO.StreamReader(strm, True)
            'sr = New System.IO.StreamReader(strm, encode)
            MsgBox("Encoding: " & sr.CurrentEncoding.ToString)
            txtSrc.Text = ""
            Do
                line = sr.ReadLine()
                txtSrc.Text += line
            Loop While Not line Is Nothing
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
encoding paarupalli J2EE 0 March 2nd, 2007 04:14 AM
Returning a custom WebResponse to the browser DudeBori82 ASP.NET 2.0 Professional 5 September 28th, 2006 08:53 AM
Webresponse contenttype different from request mikehsu317 C# 6 September 27th, 2006 11:42 AM
WebRequest/WebResponse form submit problem. HELP! MAtkins ASP.NET 1.0 and 1.1 Professional 1 June 14th, 2006 04:18 AM
encoding alihussein3 Javascript How-To 1 October 28th, 2003 05:23 AM



All times are GMT -4. The time now is 03:51 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2008 Wiley Publishing, Inc