当前位置: 首页 > 图文教程 > 网络编程 > ASP > Response对象4

ASP
ASP进阶教程Ⅰ:循序渐进学留言薄
ASP进阶教程Ⅱ:一个简单的留言簿
ASP进阶教程Ⅲ:给留言簿润下色
ASP进阶教程Ⅵ:留言簿在线删除留言
ASP进阶教程Ⅴ:留言簿在线留言编辑(一)
ASP进阶教程Ⅴ:留言簿在线留言编辑(二)
ASP进阶教程Ⅳ:加入精彩留言
ASP进阶教程Ⅸ:留言查询功能(一)
ASP进阶教程Ⅸ:留言查询功能(二)
ASP进阶教程Ⅷ:数据库版本的留言簿
ASP基础讲座(上)
ASP系列讲座(一)关于 Active Server Pages
ASP系列讲座(二)ASP 的新功能
Asp用于分页的两个函数
ASP与Oracle连接时的TNS错误
小工具:统计有多少行JS代码和ASP代码,并有多少字节
一个xmlhttp读取xml的例子
ASP终极防范上传漏洞
防止网站内容被人小偷和采集的ASP代码
批量判断域名是否被注册程序代码

ASP 中的 Response对象4


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 46 ::
收藏到网摘: n/a

  Response对象后跟输出对象,其语法见下面的演示代码。

<html><head>
<title>res4.asp</title>
</head><body bgcolor="#FFFFFF">
<%
' The response object can be used to write text a variety of ways
' depending on what style you personally prefer

' Various permutations of writing to the browser
response.write "<form>"
response.write "Hello, Joe<br>"

who="Joe"
response.write "Hello, " & who & "<br>"
%>

Hello, <%=who%><br>

Which Book? <input type="TEXT" name="book" value="The Stand"><br>

<%
response.write "Which Book? <input type=""TEXT"" name=""book""
value=""The Stand""><br>"
%>

<%
response.write "Which Book? <input type='TEXT' name='book' value='The
Stand'><br>"
%>

<%
quote=chr(34)
response.write "Which Book? <input type=" & quote & "TEXT" & quote
& " name=" & quote & "book" & quote & " value=" & quote & "The Stand"
& quote & "><br>"
%>


<%bookname="The Stand"%>
Which Book? <input type="TEXT" name="book" value="<%=bookname%>"><br>

<%
response.write "Which Book? <input type=""TEXT"" name=""book""
value=""" & bookname & """><br>"
%>
</form>
</body></html>