网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 交易代码 > ASP精品代码 > 正文

ASP内建对象

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

一、目的和要求:
1、熟知Response对象的有关属性和方法及Cookies集,熟练掌握其功能和用法,应达到“简单应用”的层次;
2、熟知Request对象的属性和方法集合(Form、QueryString、Cookies、ServerVariables);
3、熟知Server对象的属性和方法(Server.CreateObject()、Mappath());
4、熟练掌握会话级作用域的对象(Session)的属性和方法;
5、熟练掌握应用级作用域的对象(Application的属性和方法;
6、掌握在global.asa文件中使用Session和Application对象的属性、方法、事件等;

二、重点与难点:
1、利用Response对象的属性、方法、和Cookies集合来控制和管理由服务器发送到浏览器的数据;
2、利用Request对象获得表单所提交的数据、Cookie的值以及服务器环境变量的值;
3、在globa.asa文件中使用Application对象和Session对象。

三、教学进程:
 

 

在ASP中内建了一些对象,通过这些对象,可以很容易地收集浏览器发送和请求的信息,以及与服务器和用户相关的信息。
1、Response对象
用于控制和管理由服务器发送到浏览器的数据(HTML普通文本、控制信息、Cookies),其功能主要通过该对象的属性、方法和Cookies集合来实现的。
Buffer属性:指定ASP页面创建的输出是否保存在IIS的缓冲区中,其取值为True或False。(chapter05/section1/ response_buffer.asp )
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%response.Buffer=false%>                     
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%for i=1 to 10
for j= 1 to 500000            '用于延迟
next
response.Write(i&",")  
next
%>
</body>
</html>
contenttype属性:指定服务器响应的HTTP内容类型(chapter05/section1/ response.contentype.asp)
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%type0=response.contenttype%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%response.Write type0%>
</body>
</html>

charset属性(chapter05/section1/response_charset.asp)
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%response.charset="big5"
  response.charset="gb2312"
%>
<head>
<meta http-equiv="Content-Type" content="text/html; />
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><meta http-equiv="Content-Type" content="text/html; " /></head>
<body>
安徽工业职业技术学院
</body>
</html>

expires属性:用户设置网页过期的时间,以分钟为单位(chapter05/section1/ response_expires.asp)
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%response.expires=4%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
现在时间为:<%response.Write time%>
</body>
</html>

status属性(chapter05/section1/ response_status.asp)
<body>
<%response.status="500 not found"%>
</body>

write方法:将字符写入HTTP响应流中(chapter05/section1/response_write.asp)
binarywrite方法:以二进制的方式输入(chapter08/section6/ showpic.asp)
redirct方法:转到其它页面,必须放在其它HTML标记和任何内容之前;
<% if passflag=0 then response.Redirect "response_buffer.asp"%>
(chapter08/section6/ response_redirct.asp)

Reponse对象的cookies集:给客户端作一个标记;(chapter05/section1/ response_cookie.asp)
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
if request.Cookies("uservisit")("num")="" then
response.Cookies("uservisit")("

  • 上一篇资讯: ASP内建对象n
  • 下一篇资讯: VBScript程序设计
  • 设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
    版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师