I have the "XML name expected" error in the following line:
Private HT() As String = {{<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">}, _
and this tries to be the first row of an array that I'm going to use to writing an html file.
If I change the line to v.gr.
Private HT() As String = {{line1}, _
then my Public Class Form 1 ends up with the error: "Expected beginning '<' for an XML tag"
Private HT() As String = {{<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">}, _
and this tries to be the first row of an array that I'm going to use to writing an html file.
If I change the line to v.gr.
Private HT() As String = {{line1}, _
then my Public Class Form 1 ends up with the error: "Expected beginning '<' for an XML tag"