TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to VBNET

VB.NET HtmlEncode, HtmlDecode Examples

Encode HTML strings with WebUtility.HtmlEncode and HtmlDecode. Use UrlEncode and UrlDecode.
HtmlEncode, Decode. HTML strings reserve certain characters, angle brackets, for markup. These chars must be encoded to exist in valid HTML.
Urls, meanwhile, require certain characters like spaces use url encoding (a code preceded by a percentage sign). With WebUtility—HtmlEncode and UrlEncode—we encode these ways.
HtmlEncode, HtmlDecode. This example handles HTML. The first string "hasBrackets" contains HTML tags, but we want to represent these as text in an HTML page.

HtmlEncode: This method takes a string that is not encoded (like hasBrackets) and changes angle brackets to entity encodings.

HtmlDecode: This takes entity encodings (like gt and lt) and replaces them with their original char values, the opposite of HtmlEncode.

VB.NET program that uses HtmlEncode, HtmlDecode Imports System.Net Module Module1 Sub Main() Dim input As String = "<b>Hi 'friend'</b>" ' Encode it. Dim result1 As String = WebUtility.HtmlEncode(input) ' Decode it back again. Dim result2 As String = WebUtility.HtmlDecode(result1) ' Write results. Console.WriteLine(result1) Console.WriteLine(result2) End Sub End Module Output &lt;b&gt;Hi &#39;friend&#39;&lt;/b&gt; <b>Hi 'friend'</b>
UrlEncode, UrlDecode. These methods work in a similar way as the HTML-encoding ones. We first use an Imports System.Net directive at the top.

UrlEncode: This takes a normally-formatted string and replaces certain characters, like spaces and slashes, with encoded values.

UrlDecode: This converts back an encoded url into a normal string. The two methods will round-trip data.

Tip: With UrlEncode, we should only pass part of the url, not the scheme, as http:// will be changed in an undesirable way.

VB.NET program that uses UrlEncode, UrlDecode Imports System.Net Module Module1 Sub Main() ' This string contains space and slash. Dim hasSpaces As String = "one two/three" ' Encode it as url. Dim result1 As String = WebUtility.UrlEncode(hasSpaces) Dim result2 As String = WebUtility.UrlDecode(result1) ' Example's results. Console.WriteLine(result1) Console.WriteLine(result2) End Sub End Module Output one+two%2Fthree one two/three
Performance. In my testing, the HtmlEncode and HtmlDecode methods are faster than approaches that use String Replace (which may cause excess allocations).Replace

However: The fastest way to encode HTML would be to make no changes. A system could simply not accept HTML chars.

A summary. With these encoding methods, we can process pages and urls in VB.NET to make them valid. This will prevent browsers from incorrectly rendering a site or any HTML interface.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf