Partial Class HtmlEncodeTest Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ctrl1.InnerHtml = "To bold text use the tag." ctrl2.InnerHtml = "To bold text use the " + Server.HtmlEncode("") + " tag." End Sub End Class