Hi -
I am loading the editor content from an HTML file with the following code:
I seem to get a few errors that I can't figure out:
1. In the HTML there is a link with a query string. e.g.
<A href="http://www.abc.com/Default.aspx?id=118&cost=WR1841" target=_blank>
The Editor converts it to:
<A href="http://www.abc.com/Default.aspx?id=118&cost=WR1841" target=_blank>
2. There are special characters like ®
The editor just displays a �
Any help will be appreciated
I am loading the editor content from an HTML file with the following code:
Private Sub LoadEditor(ByVal File As String)
Dim sr As System.IO.StreamReader
Dim fi As New System.IO.FileInfo(File)
Dim strContents As String = ""
If System.IO.File.Exists(File) Then
sr = System.IO.File.OpenText(File)
strContents += sr.ReadToEnd()
Editor.Content = strContents
sr.Close()
Else
End If
End Sub
I seem to get a few errors that I can't figure out:
1. In the HTML there is a link with a query string. e.g.
<A href="http://www.abc.com/Default.aspx?id=118&cost=WR1841" target=_blank>
The Editor converts it to:
<A href="http://www.abc.com/Default.aspx?id=118&cost=WR1841" target=_blank>
2. There are special characters like ®
The editor just displays a �
Any help will be appreciated
