主頁 > 知識(shí)庫 > javascript asp教程服務(wù)器對(duì)象

javascript asp教程服務(wù)器對(duì)象

熱門標(biāo)簽:咸陽銷售外呼系統(tǒng) 蘭州智能語音電銷機(jī)器人功能 企數(shù)外呼系統(tǒng)能用多久 外呼回?fù)芟到y(tǒng)圖片 為什么外呼系統(tǒng)需要預(yù)存話費(fèi)呢 寧夏怎么申請(qǐng)400電話 常用地圖標(biāo)注范圍點(diǎn) 辦理400電話一年多少錢 離線電子地圖標(biāo)注軟件注冊(cè)

Overview:

The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections.

List of Methods:

Server Methods
CreateObject( ) Server.CreateObject("ADODB.Recordset")
Create an instance of an Object
Execute( ) Server.Execute("fileName.asp")
Executes an outside file (effect is similar to SSI)
GetLastError( ) Server.GetLastError()
Returns location and description of the last ASP error
HTMLEncode( ) Server.HTMLEncode("some String")
Encodes string to HTML characters
MapPath( ) Server.MapPath("\\virtualFolder")
Converts virtual path to physical path
Transfer( ) Server.Transfer("fileName.asp")
Transfers execution out of one page and into another
URLEncode( ) Server.URLEncode("some String")
Encodes string to URL standards

Below is the script for Lesson 14.

%@LANGUAGE="JavaScript"%>
HTML>
BODY>
%=Server.URLEncode("Hello, this string is URL Encoded!")%>
BR>BR>
Now let's see a reprint of Script14a.asp.
I did not type it manually. Instead, I let
Server.CreateObject( ) do all the work.BR>
STRONG>
%
Server.ScriptTimeout=10
var ASPScriptObject = Server.CreateObject("Scripting.FileSystemObject");
var myPath=Server.MapPath("\\") + "\\Section04\\script14a.asp"
var AspScript = ASPScriptObject.OpenTextFile(myPath);
var outputScript="";

while(!AspScript.AtEndOfStream)
	{
	outputScript += AspScript.ReadLine() + "\r";
	}

outputScript = new String(outputScript);
outputScript=Server.HTMLEncode(outputScript)
AspScript.Close();
outputScript = "PRE>" + outputScript + "/PRE>";
Response.Write(outputScript)
%>
/STRONG>
/BODY>
/HTML>

Click Here to run the script in a new window.

I demonstrated four methods in the script14.asp. We'll take them from top to bottom.

Explaining the Script:

Server.URLEncode() does exactly what you think it does. It takes a string and encodes it to RFC 1738 standards. That's more than you ever wanted to know about Server.URLEncode(), isn't it?

Next we have Server.CreateObject(). In this case I created an instance of the FileSystem Object. The most common objects that you will instanciate are ADODB.Recordset, Scripting.FileSystemObject, Scripting.Dictionary, MSWC.AdRotator, MSWC.BrowserType, MSWC.NextLink, and MSWC.ContentRotator. There are many good resources on all of these created Objects. Most of them are beyond the scope of this web site.

Next on the list is Server.MapPath(). Looking back at script14.asp, do you see the double slashes (\\) in the MapPath argument? That's not an accident. We have to use escape characters in JavaScript.

The last Method I demonstrate is Server.HTMLEncode(). It converts HTML flags into non-HTML equivalents.

The Lone Property:

Server has one property: ScriptTimeout. It sets the maximum number of seconds allowable for script execution. If the script execution exceeds that time, then it times out. The user gets an ugly message but at least the Web Server can quit executing your darned greedy script and go about other business.

您可能感興趣的文章:
  • java網(wǎng)絡(luò)編程之socket網(wǎng)絡(luò)編程示例(服務(wù)器端/客戶端)
  • Java從服務(wù)器上獲取時(shí)間動(dòng)態(tài)顯示在jsp頁面實(shí)現(xiàn)思路
  • java判斷遠(yuǎn)程服務(wù)器上的文件是否存在的方法
  • cookie在javascript中的使用技巧以及隱私在服務(wù)器端的設(shè)置
  • 使用jquery動(dòng)態(tài)加載javascript以減少服務(wù)器壓力
  • 服務(wù)器端的JavaScript腳本 Node.js 使用入門
  • javascript獲得服務(wù)器端控件的ID的實(shí)現(xiàn)代碼
  • Node.js:Windows7下搭建的Node.js服務(wù)(來玩玩服務(wù)器端的javascript吧,這可不是前端js插件)
  • 客戶端用JavaScript填充DropDownList控件 服務(wù)器端讀不到值
  • Javascript 直接調(diào)用服務(wù)器C#代碼 ASP.NET Ajax實(shí)例
  • weblogic 8.1下重新編譯java類但不用重啟服務(wù)器的方法
  • Java進(jìn)階學(xué)習(xí):網(wǎng)絡(luò)服務(wù)器編程
  • Java Socket編程(三) 服務(wù)器Sockets
  • Java Socket編程(四) 重復(fù)和并發(fā)服務(wù)器
  • Java Socket編程(五) 簡單的WEB服務(wù)器
  • 用Java實(shí)現(xiàn)FTP服務(wù)器解決方案
  • java實(shí)現(xiàn)輕量型http代理服務(wù)器示例

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

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《javascript asp教程服務(wù)器對(duì)象》,本文關(guān)鍵詞  javascript,asp,教程,服務(wù)器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《javascript asp教程服務(wù)器對(duì)象》相關(guān)的同類信息!
  • 本頁收集關(guān)于javascript asp教程服務(wù)器對(duì)象的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章