show/hide this revision's text 2 edited body; edited title

Need help with converting charaters characters to ASCII code in VB code

Need help with reading speical special characters within my VB code. ASCII code Char(34) = " works fine but Char(60) = < and Char(62) = > are not being read.

My Code

node.FirstChild.InnerText = Chr(60) & "httpRuntime executionTimeout=" & Chr(34) & "999999" & Chr(34) & " maxRequestLength=" & Chr(34) & "2097151" & Chr(34) & "/" & Chr(62)

Without ASCII Code

'node.FirstChild.InnerText = "<httpRuntime executionTimeout="999999" maxRequestLength="2097151"/>"
show/hide this revision's text 1

Need help with converting charaters to ASCII code in VB code

Need help with reading speical characters within my VB code. ASCII code Char(34) = " works fine but Char(60) = < and Char(62) = > are not being read.

My Code

node.FirstChild.InnerText = Chr(60) & "httpRuntime executionTimeout=" & Chr(34) & "999999" & Chr(34) & " maxRequestLength=" & Chr(34) & "2097151" & Chr(34) & "/" & Chr(62)

Without ASCII Code

'node.FirstChild.InnerText = "<httpRuntime executionTimeout="999999" maxRequestLength="2097151"/>"