程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP入門教程 >> ASP Response對象5

ASP Response對象5

編輯:ASP入門教程
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> 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved