中华考试网·阅读新闻
编程开发 > ASP > 文章内容

ASP入门基础教程:Server对象的URLEncode方法

2015-10-12编辑:ljnbset

Server对象的URLEncode方法

    使用Server对象的URLEncode方法可以对指定的字符串转换成URL编码。其语法格式如下: Server.URLEncode(String)

  其在String是指定要编码的字符串。

  当超连接的查询字符串含有空格时,则不能在页面之间传送。例如:

  此时,可以使用Server对象的URLEncode方法对查询字符串进行URL编码。如下:

<% UserName=Server.URLEncode("Sand Smile")%>
"下一页

  实例三:使用Server对象的URLEncode方法,将指定的字符串转换成URLEncode编码的字符串。






Server对象的URLEncode方法示例


<%
Response.write("欢迎来启航学习ASP。
")
Response.write "Http=sand.flasher123.com/fladher123asp/index.htm" & "

"
Response.write Server.URLEncode("欢迎来启航学习ASP。

")
Response.write Server.URLEncode("Http=sand.flasher123.com/fladher123asp/index.htm" & "
")
%>



ASP入门基础教程:Server对象的HTMLEncode方法
咨询热线:4000-525-585(免长途费)