婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > javascript asp教程第七課--response屬性

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

熱門標簽:常用地圖標注范圍點 寧夏怎么申請400電話 企數外呼系統能用多久 為什么外呼系統需要預存話費呢 咸陽銷售外呼系統 離線電子地圖標注軟件注冊 外呼回撥系統圖片 蘭州智能語音電銷機器人功能 辦理400電話一年多少錢

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("\rTR>")
		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.

您可能感興趣的文章:
  • 獲取軟件下載的真實地址!再談獲取Response.redirect重定向的URL
  • javascript asp教程第六課-- response方法
  • ASP .NET調用javascript中Response.Write和ClientScript.RegisterStartupScript的區別
  • JavaEE中用response向客戶端輸出中文數據亂碼問題分析
  • JavaEE通過response實現請求重定向

標簽:鐵嶺 昌都 泰州 昆明 麗江 溫州 咸陽 家電維修

巨人網絡通訊聲明:本文標題《javascript asp教程第七課--response屬性》,本文關鍵詞  javascript,asp,教程,第七,課,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《javascript asp教程第七課--response屬性》相關的同類信息!
  • 本頁收集關于javascript asp教程第七課--response屬性的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 鄂尔多斯市| 清徐县| 阳江市| 辽阳县| 湘阴县| 大竹县| 新乐市| 谷城县| 二连浩特市| 西充县| 曲周县| 葫芦岛市| 桦川县| 军事| 额尔古纳市| 宁武县| 于都县| 神农架林区| 安西县| 山西省| 华亭县| 张家界市| 隆化县| 延川县| 西平县| 鞍山市| 当阳市| 阿瓦提县| 韩城市| 凉城县| 清远市| 平山县| 平度市| 久治县| 南昌县| 垦利县| 丹江口市| 林州市| 教育| 大竹县| 揭东县|