Need help with converting characters to ASCII code in VB code - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T16:44:30Zhttp://stackoverflow.com/feeds/question/626132http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code1Need help with converting characters to ASCII code in VB codeMG2009-03-09T13:03:44Z2009-03-09T13:34:48Z
<p>Need help with reading special characters within my VB code. ASCII code Char(34) = " works fine but Char(60) = < and Char(62) = > are not being read. </p>
<p>My Code</p>
<pre><code>node.FirstChild.InnerText = Chr(60) & "httpRuntime executionTimeout=" & Chr(34) & "999999" & Chr(34) & " maxRequestLength=" & Chr(34) & "2097151" & Chr(34) & "/" & Chr(62)
</code></pre>
<p>Without ASCII Code</p>
<pre><code>'node.FirstChild.InnerText = "<httpRuntime executionTimeout="999999" maxRequestLength="2097151"/>"
</code></pre>
http://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code/626164#6261640Answer by Jon Skeet for Need help with converting characters to ASCII code in VB codeJon Skeet2009-03-09T13:11:24Z2009-03-09T13:11:24Z<p>You'll need to give more information about how you're "seeing" the results. In my experience, problems with this are as likely to be about viewing strings in the debugger as getting the right strings in the first place.</p>
<p>I don't really see why you need to use <code>Chr(60)</code> etc at all, other than for the quotes. What happens when you just use <code><</code> and <code>></code> in your code?</p>
<p>I <em>strongly</em> suggest you dump the string out to the console rather than using the debugger - the debugger tries to show you how you could represent the string in code, rather than showing you the contents verbatim.</p>
<p>Of course, if this is XML then I'd expect serializing the XML out again to end up escaping the <code><</code> and <code>></code> - again, more information about what you're trying to do would be helpful. The absolute <em>ideal</em> (IMO) would be a short but complete program demonstrating the problem - a small console app which does one thing, and a description of what you want it to do instead.</p>
http://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code/626170#6261701Answer by splattne for Need help with converting characters to ASCII code in VB codesplattne2009-03-09T13:13:02Z2009-03-09T13:13:02Z<p>Maybe this doesn't answer your question, but you could use <strong>two double quotes</strong> to escape the quotes character in VB.NET:</p>
<pre><code>node.FirstChild.InnerText = _
"<httpRuntime executionTimeout=""999999"" maxRequestLength=""2097151"" />"
</code></pre>
<p>I'm just guessing: you could use the <code>String.Format</code> method for your purposes:</p>
<pre><code> node.FirstChild.InnerText = _
String.Format( _
"<httpRuntime executionTimeout=""{0}"" maxRequestLength=""{1}"" />", _
timeoutValue.ToString(), reqLenValue.ToString())
</code></pre>
http://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code/626186#6261861Answer by AnthonyWJones for Need help with converting characters to ASCII code in VB codeAnthonyWJones2009-03-09T13:18:11Z2009-03-09T13:18:11Z<p>Are you trying to modify a Config file? Try:-</p>
<pre><code>node.FirstChild.InnerXml = "<httpRuntime executionTimeout=""999999"" maxRequestLength=""2097151"" />"
</code></pre>
<p>Note all that Chr marlarky is unnecessary, were you trying to avoid <code><</code> and <code>></code> being encoded as XML entities?</p>