国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

javascript asp教程第七課--response屬性

2024-05-04 11:01:55
字體:
來源:轉載
供稿:網(wǎng)友

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

Response Properties
BufferResponse.Buffer = true
Allows for the buffering of output
CacheControlResponse.CacheControl="Public"
Sets Cache to "Public" or "Private"
CharSetResponse.CharSet="windows-1252"
Sets the ISO character set
ContentTypeResponse.ContentType="text/HTML"
Specifies the output mime type (text/html, text/plain, GIF, JPG)
ExpiresResponse.Expires=60
Sets page expiration in minutes
ExpiresAbsoluteResponse.ExpiresAbsolute=#January 31, 2003 13:00:00#
Sets time certain for page to expire
IsClientConnectedif (Response.IsClientConnected==true) { }
Determines if client is still connected
PICS((See Explanation))
Platform for Internet Content Selection
StatusResponse.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=trueResponse.CacheControl="Private" Response.CharSet="windows-1252"Response.ContentType="text/HTML"Response.Expires=-1Response.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."

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 乌拉特后旗| 通海县| 临邑县| 余江县| 甘肃省| 嵩明县| 巢湖市| 曲阳县| 麻江县| 大方县| 浪卡子县| 姜堰市| 江门市| 汕尾市| 通许县| 宁国市| 泰来县| 江源县| 大关县| 任丘市| 尼玛县| 涡阳县| 郸城县| 大埔区| 安吉县| 呈贡县| 井陉县| 临颍县| 阿拉善左旗| 当阳市| 西平县| 南和县| 永宁县| 青神县| 垦利县| 开封县| 应城市| 乐昌市| 灌南县| 沛县| 呼伦贝尔市|