WEB开发网
开发学院WEB开发ASP ASP入门基础教程-Server对象的方法 阅读

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

 2006-10-26 12:01:12 来源:WEB开发网   
核心提示: <html><head><title>Server对象的HTMLEncode方法</title></head><body><p align="center">Server 对象的HTML
<html>
<head>
<title>Server对象的HTMLEncode方法</title></head>
<body>
<p align="center">Server 对象的HTMLEncode方法</p>
<%
Response.write "<center>"
Response.write "设置水平线宽度的语法格式如下:<p>"
Response.Write server.HTMLEncode ("<hr width='70%'>")
Response.write "</center>"
%>
</body>
</html>

四、Server对象的URLEncode方法

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

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

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

<a HREF="NextPage.asp?UserName=Sand Smile">

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

<% UserName=Server.URLEncode("Sand Smile")%>
<AHREF="NextPage.asp?UserName="<%=UserName %>"下一页</A>

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

<html>
<head><title>Server对象的URLEncode方法</title>
<style type="text/css">
body,td,th {
font-size: 14pt;
color: #009999;
line-height: 1.5;
}
body {
background-color: #F6E9DF;
margin-top: 100px;
margin-bottom: 0px;
}
</style>
</head>
<body>
<center><font size="6" color="#cc6699">Server对象的URLEncode方法示例</font><p>
<%
Response.write("<font size='4' color='#cc9999'>欢迎来启航学习ASP。<br>")
Response.write "Http=sand.flasher123.com/fladher123asp/index.htm" & "<p>"
Response.write Server.URLEncode("<font size='5' color='#66cc99'>欢迎来启航学习ASP。</font><p>")
Response.write Server.URLEncode("Http=sand.flasher123.com/fladher123asp/index.htm" & "<br></font>")
%>
</center>
</body>
</html>

查看全套"ASP入门基础"教程>>>>>

上一页  1 2 3 

Tags:ASP 入门 基础

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接