您的位置:首页 > 编程学习 > Web > 正文

Server对象的HtmlEncode和UrlEncode

更多 时间:2014-11-7 类别:编程学习 浏览量:318

Server对象的HtmlEncode和UrlEncode

Server对象的HtmlEncode和UrlEncode

一、Server对象的HtmlEncode

HtmlEncode 方法将指定的字符串中的HTML标记字符转换为字符实体。

 

语法

Server.HtmlEncode( string )

 

实例

Server.HTMLEncode("The paragraph tag: <P>")

输出

The paragraph tag: &lt;P&gt;

注意

以上输出将被 Web 浏览器显示为

The paragraph tag: <P>

 

 

二、Server对象的UrlEncode

 

用来对url地址进行编码,包括转义字符。

Server.UrlEncode 可以根据你页面定义好的编码方式进行编码。

 

语法

Server.UrlEncode( string )

 

URLEncode会如下转换字符:

  • 空格( )会被转换为加号(+)
  • 非字母数字字符会被转换为他们的十六进制表现形式

 

实例

Server.URLEncode(http://www.studyofnet.com)

输出结果为

http%3A%2F%2Fwww%2Estudyofnet%2Ecom

 

标签:Server对象