当前位置: 移动技术网 > IT编程>开发语言>.net > Response对象5

Response对象5

2017年12月28日  | 移动技术网IT编程  | 我要评论
Response对象常与其它的代码混合使用。下面这段代码演示了response.write与其
它代码混用的例 子。

<html><head>
<title>res5.asp</title>
</head><body bgcolor="#FFFFFF">
<%
The response object can be used to write text
but sometimes some functions must be used to transform
the text instead of sending as is to the browser

response.write "<B>Hyperion</b> by <I>Dan Simmons</i> is a great
novel"
response.write "<p>"
response.write server.htmlencode("<B>Hyperion</b> by <I>Dan
Simmons</i> is a great novel")
response.write "<p>"


response.write "Joe Smith & Hilda = a team"
response.write "<p>"
response.write server.URLencode("Joe Smith & Hilda = a team")
%>

</body></html>


如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网