Need help with converting characters to ASCII code in VB code - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:44:30Z http://stackoverflow.com/feeds/question/626132 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code 1 Need help with converting characters to ASCII code in VB code MG 2009-03-09T13:03:44Z 2009-03-09T13:34:48Z <p>Need help with reading special characters within my VB code. ASCII code Char(34) = " works fine but Char(60) = &lt; and Char(62) = > are not being read. </p> <p>My Code</p> <pre><code>node.FirstChild.InnerText = Chr(60) &amp; "httpRuntime executionTimeout=" &amp; Chr(34) &amp; "999999" &amp; Chr(34) &amp; " maxRequestLength=" &amp; Chr(34) &amp; "2097151" &amp; Chr(34) &amp; "/" &amp; Chr(62) </code></pre> <p>Without ASCII Code</p> <pre><code>'node.FirstChild.InnerText = "&lt;httpRuntime executionTimeout="999999" maxRequestLength="2097151"/&gt;" </code></pre> http://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code/626164#626164 0 Answer by Jon Skeet for Need help with converting characters to ASCII code in VB code Jon Skeet 2009-03-09T13:11:24Z 2009-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>&lt;</code> and <code>&gt;</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>&lt;</code> and <code>&gt;</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#626170 1 Answer by splattne for Need help with converting characters to ASCII code in VB code splattne 2009-03-09T13:13:02Z 2009-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 = _ "&lt;httpRuntime executionTimeout=""999999"" maxRequestLength=""2097151"" /&gt;" </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( _ "&lt;httpRuntime executionTimeout=""{0}"" maxRequestLength=""{1}"" /&gt;", _ timeoutValue.ToString(), reqLenValue.ToString()) </code></pre> http://stackoverflow.com/questions/626132/need-help-with-converting-characters-to-ascii-code-in-vb-code/626186#626186 1 Answer by AnthonyWJones for Need help with converting characters to ASCII code in VB code AnthonyWJones 2009-03-09T13:18:11Z 2009-03-09T13:18:11Z <p>Are you trying to modify a Config file? Try:-</p> <pre><code>node.FirstChild.InnerXml = "&lt;httpRuntime executionTimeout=""999999"" maxRequestLength=""2097151"" /&gt;" </code></pre> <p>Note all that Chr marlarky is unnecessary, were you trying to avoid <code>&lt;</code> and <code>&gt;</code> being encoded as XML entities?</p>