javascript asp教程服務器對象
Overview:
The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections.
List of 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ò)編程示例(服務器端/客戶端)
- Java從服務器上獲取時間動態(tài)顯示在jsp頁面實現(xiàn)思路
- java判斷遠程服務器上的文件是否存在的方法
- cookie在javascript中的使用技巧以及隱私在服務器端的設(shè)置
- 使用jquery動態(tài)加載javascript以減少服務器壓力
- 服務器端的JavaScript腳本 Node.js 使用入門
- javascript獲得服務器端控件的ID的實現(xiàn)代碼
- Node.js:Windows7下搭建的Node.js服務(來玩玩服務器端的javascript吧,這可不是前端js插件)
- 客戶端用JavaScript填充DropDownList控件 服務器端讀不到值
- Javascript 直接調(diào)用服務器C#代碼 ASP.NET Ajax實例
- weblogic 8.1下重新編譯java類但不用重啟服務器的方法
- Java進階學習:網(wǎng)絡(luò)服務器編程
- Java Socket編程(三) 服務器Sockets
- Java Socket編程(四) 重復和并發(fā)服務器
- Java Socket編程(五) 簡單的WEB服務器
- 用Java實現(xiàn)FTP服務器解決方案
- java實現(xiàn)輕量型http代理服務器示例
相關(guān)文章
javascript asp教程創(chuàng)建數(shù)據(jù)庫連接
javascript asp教程創(chuàng)建數(shù)據(jù)庫連接...2007-03-03
asp下如何在Access數(shù)據(jù)庫中立即得到所插入記錄的自動編號?
asp下如何在Access數(shù)據(jù)庫中立即得到所插入記錄的自動編號?...2007-04-04
aspjpeg是一款非常強大的圖片處理組件,純英文版本。不過早已經(jīng)有免費版和破解版,但是對其進行詳細與深入介紹的文章卻是不多,即使有也只牽涉到圖片縮略和圖片水印??赡苁且驗榧冇⑽牡木壒?/div> 2006-06-06
javascript asp教程第三課 new String() 構(gòu)造器
javascript asp教程第三課 new String() 構(gòu)造器...2007-03-03最新評論

