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

ASP
ASP讲座之六:ASP与数据库(一)
ASP讲座之七:ASP与数据库(二)
ASP讲座之八:ASP与数据库(三)
ASP讲座之九:ASP与数据库(四)
ASP讲座之十:自己动手编写组件
ASP讲座之十一:结束语:给您一些建议
ASP实用大全-ASP基础(1)
ASP实用大全-ASP基础(2)
ASP实用大全-ASP基础(3)
ASP实用大全-ASP基础(4)
ASP实用大全-ASP基础(5)
ASP实用大全-ASP对象(1)
ASP实用大全-ASP对象(2)
ASP实用大全-ASP对象(3)
ASP实用大全-ASP对象(4)
ASP实用大全-ASP对象(5)
ASP实用大全-ASP对象(6)
ASP实用大全-ASP服务器组件(1)
ASP实用大全-ASP服务器组件(2)
ASP实用大全-ASP服务器组件(3)

ASP 中的 Response对象4


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 54 ::
收藏到网摘: 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>