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入门基础"教程>>>>>
- ››ASP.NET及JS中的cookie基本用法
- ››ASP.NET获取MS SQL Server安装实例
- ››asp.net实现调用百度pai 在线翻译英文转中文
- ››ASP.NET页面选项进行提示判断
- ››Asp.net定时执行程序
- ››ASP.NET中利用DataList实现图片无缝滚动
- ››ASP.NET验证控件RequiredFieldValidator
- ››ASP.NET中使用System.Net.Mail发邮件
- ››ASP.NET中获取用户控件中控件的ID
- ››ASP.NET中FileBytes写成文件并存档
- ››asp获取毫秒数
- ››asp.net报“INSERT INTO 语句的语法错误解决
更多精彩
赞助商链接