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

ASP
绑定txt文件到DataGrid
在用户离开页面时提示信息
asp + oracle 分页方法(不用存储过程)
asp + sqlserver 分页方法(不用存储过程)
验证身份证号是否正确的代码
检查有日文片假名的新闻
asp关键字函数运算附
ASP中也能解压缩rar文件
ASP文章系统解决方案
DW+ASP 玩转动态二级菜单
在ASP中操作数据库的方法
ASP做象资源管理器的树形目录
在asp中结合对象和组件
Active Server Pages是什么?
ActiveServerPages是怎样工作?
ASP脚本基础
ASP中的内建对象Server
在网页中动态的生成一个gif图片
ASP.NET中的状态管理
解决ASP执行DB查询中的特殊字符问题

ASP 中的 Response对象4


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