源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 322|回复: 22

[ASP编程] javascript asp教程第七课--response属性

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2007-3-2 00:00:00 | 显示全部楼层 |阅读模式

Below is a table of Response Properties along with examples and explanations.

Response Properties
Buffer Response.Buffer = true
Allows for the buffering of output
CacheControl Response.CacheControl="Public"
Sets Cache to "Public" or "Private"
CharSet Response.CharSet="windows-1252"
Sets the ISO character set
ContentType Response.ContentType="text/HTML"
Specifies the output mime type (text/html, text/plain, GIF, JPG)
Expires Response.Expires=60
Sets page expiration in minutes
ExpiresAbsolute Response.ExpiresAbsolute=#January 31, 2003 13:00:00#
Sets time certain for page to expire
IsClientConnected if (Response.IsClientConnected==true) { }
Determines if client is still connected
PICS ((See Explanation))
Platform for Internet Content Selection
Status Response.Status="401 Unauthorized"
Sets Page Status

You are not required to set, alter, or utilize a single Response Property if you don't want to. Having said that, they can be handy once in while. I've demonstrated all but two Properties in the script below.

By the way, set your properties BEFORE you begin output to the client.

Get Started:

Below is the ASP script for Lesson 07.

<%@LANGUAGE="JavaScript"%>
<%
Response.Buffer=true
Response.CacheControl="Private" 
Response.CharSet="windows-1252"
Response.ContentType="text/HTML"
Response.Expires=-1
Response.Status="200 OK"
%>
<HTML>
<BODY>
<%
if (Response.IsClientConnected==true)
	{
	Response.Write("The client is connected.<BR>")
	}
else
	{
	Response.End()
	}
%>
<TABLE BORDER="2">
<TR>
<%
for (x=1;x<=200;x++)
	{
	Response.Write("<TD>" + x + " </TD>\r")
	if (x%10==0)
		{
		Response.Clear()
		}
	if (x%4==0)
		{
		Response.Write("</TR></TABLE>\r")
		Response.Write("<TABLE BORDER=\"2\">")
		Response.Write("\r<TR>")
		Response.Flush()
		}
	}
%>
</TR></TABLE>
</BODY>
</HTML>

Click Here to run the script in a new window. After you click onto the link, really study the numbers. See if you notice anything weird about the page, like missing numbers.

Response.Buffer:

Let's take the Properties in order of appearance in our script. Response.Buffer allows us to control the output via Response.Flush() and Response.Clear(). If you haven't already, click onto the link to run the script. You'll get a strange output with some of the numbers missing. The missing numbers are thanks to Response.Clear(). You might notice that Response.Flush() slows down the server TREMENDOUSLY. Don't use this method without a reason.

Response.CacheControl:

CacheControl gives you the power to authorize proxy servers to keep your page in cache. (That would be the "Public" setting.) Likewise, it allows you to disallow proxy servers from caching your page. (That would be the "Private" setting). The default is "Private."

Response.CharSet:

CharSet allows you to specify the character set, for example: "ISO 8859-1".

Response.ContentType:

ContentType allows you to indicate the mime type of the output. For example there is text/plain and text/html. There is also GIF and JPEG.

Response.Expires:

Expires allows you set an expiration time for the page. By setting the Expires property to -1, you are saying the page expired one minute before it was delivered. The browser will (hopefully) not store it in cache, but rather make a separate request to the server before re-displaying the page.

Response.Status:

If tomorrow Congress were to pass a law forbidding the use of Response.Status, I think life would go on. If it makes you happy, use it.

Response.IsClientConnected:

IsClientConnected does exactly what it says. It returns a Boolean value that you can use in an "if" statement.

Response.PICS:

PICS stands for Platform for Internet Content Selection. It allows pages to be rated for the presence of violence, sexuality, language and nudity. There are services on the internet to rate your site. I've never used one. I found a sample PICS string on the internet and I converted to JavaScript.

Response.PICS("(PICS-1.1 <http://www.rsac.org/ratingv01.html> labels on \"1997.01.05T08:15-0500\" until \"1999.12.31T23:59-0000\" ratings (v 0 s 0 l 0 n 0))")

It's a long string and your browser may have wrapped the text down to a second line. If that's the case, then you have to pretend that the entire PICS string is on one line.

Response.ExpiresAbsolute:

I did not demonstrate ExpiresAbsolute in the script because I already used Response.Expires. ExpiresAbsolute does exactly the same thing as Expires, except it uses a date and time certain. (I couldn't see using both in the same script.) The only thing I would point out is the pound signs (#) at the beginning and and of the date.

回复

使用道具 举报

1

主题

1万

回帖

59

积分

注册会员

Rank: 2

积分
59
发表于 2022-8-31 06:52:19 | 显示全部楼层
这个源码不错啊
回复 支持 反对

使用道具 举报

2

主题

1万

回帖

221

积分

中级会员

Rank: 3Rank: 3

积分
221
发表于 2022-10-16 05:07:15 | 显示全部楼层
哟哟哟哟哟以偶
回复 支持 反对

使用道具 举报

4

主题

1万

回帖

60

积分

注册会员

Rank: 2

积分
60
发表于 2022-10-24 12:49:52 | 显示全部楼层
很不错的源码论坛
回复 支持 反对

使用道具 举报

9

主题

1万

回帖

420

积分

中级会员

Rank: 3Rank: 3

积分
420
发表于 2022-11-23 05:26:07 | 显示全部楼层
可以,看卡巴
回复 支持 反对

使用道具 举报

1

主题

1万

回帖

362

积分

中级会员

Rank: 3Rank: 3

积分
362
发表于 2022-12-20 23:00:35 | 显示全部楼层
可以,看卡巴
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-12-26 16:36:25 | 显示全部楼层
啦啦啦啦啦啦啦啦!
回复 支持 反对

使用道具 举报

0

主题

1万

回帖

120

积分

注册会员

Rank: 2

积分
120
发表于 2023-2-8 14:48:50 | 显示全部楼层
刷刷刷刷刷刷刷刷刷刷刷刷刷刷刷
回复 支持 反对

使用道具 举报

13

主题

1万

回帖

85

积分

注册会员

Rank: 2

积分
85
发表于 2023-5-16 23:49:36 | 显示全部楼层
8888888888888888
回复 支持 反对

使用道具 举报

1

主题

1万

回帖

362

积分

中级会员

Rank: 3Rank: 3

积分
362
发表于 2023-6-4 09:45:52 | 显示全部楼层
撒旦撒旦撒擦擦擦擦
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2024-9-21 08:13 , Processed in 0.147420 second(s), 26 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表