Use Server.HtmlEncode to encode HTML tags (C#) : Server class « Development « ASP.NET Tutorial






File: Default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="HtmlEncodeTest" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form ID="form1" runat="server">
    <div>
        <h1>Properly encoded:</h1> 
        <div ID="ctrl2" runat="server"/>
        <br /><hr /><br />
        <h1>Incorrectly encoded:</h1> 
        <div ID="ctrl1" runat="server"/>
    </div>
    </form>
</body>
</html>




File: Default.aspx.cs


using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class HtmlEncodeTest : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    ctrl1.InnerHtml = "To <b>bold</b> text use the <b> tag.";
    ctrl2.InnerHtml = "To <b>bold</b> text use the " + Server.HtmlEncode("<b>") + " tag.";
    }
}








9.39.Server class
9.39.1.Use Server.HtmlEncode to encode HTML tags (C#)
9.39.2.Use Server.Transfer to transfer action to another aspx file (C#)
9.39.3.Server.UrlEncode
9.39.4.Forward the user to the information page, with the query string data (#)
9.39.5.Use Server.MapPath() to load the file in the current directory (VB.net)
9.39.6.Demonstration of Page_Error Handler
9.39.7.text generated by Execute can be embedded in the main response or cached in a writer object
9.39.8.Server.Execute
9.39.9.Server.GetLastError()
9.39.10.Server.HtmlDecode
9.39.11.Server.HtmlEncode
9.39.12.Server.MachineName
9.39.13.Server.MapPath
9.39.14.Server.ScriptTimeout
9.39.15.Server.Transfer
9.39.16.Server.UrlDecode
9.39.17.Server.UrlPathEncode