Get a text encoded with multi encoding

I own all

New Member
I having problems getting a text showed right with special letters (nordic letters aa, ae, oe (?, ?, ?)) i know that if u having problems with the right timeformat on a server/local u can use.\[code\]Imports System.GlobalizationPartial Class timedateInherits System.Web.UI.PageProtected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not Page.IsPostBack Then Dim cinfo As CultureInfo() = CultureInfo.GetCultures(CultureTypes.AllCultures And Not CultureTypes.NeutralCultures) For Each cul As CultureInfo In cinfo Response.Write(cul.DisplayName + " " + cul.Name + " " + cul.DateTimeFormat.ShortDatePattern + " " + cul.IetfLanguageTag + " " + cul.EnglishName + "<br />") Next End IfEnd SubEnd Class\[/code\]Is there a way to make a text "This is a test with nordic letters ? ? ? ? ? ?" and then i can add a code, that will show that text be response.write maybe 20 times, but in diffrent encoding, so i can see, Ahh UTF-8 is what i need to use on this server !??
 
Back
Top