.NET C# HtmlEncode and HtmlEncode - Turn a String in to Valid HTML - Turn valid HTML In to a normal String. Web

       // Turn a String in to Valid HTML
        var myVaildHtml = Server.HtmlEncode("blah & blah");  //  Will turn the & into &
        Response.Write(myVaildHtml);

        //Turn valid HTML In to a normal String
        var myNormalString = Server.HtmlDecode(myVaildHtml);  // Will reverse the & back to &
        Response.Write(myNormalString);

Comments

Popular posts from this blog

Umbraco Razor Sort Nodes Ascending or Descending

Umbraco Razor get Querystring

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco