Javascript asp tutorial Server Object

Source: Internet
Author: User

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 letServer.CreateObject( ) do all the work.<BR><STRONG><%Server.ScriptTimeout=10var 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 instanceate are ADODB. recordset, Scripting. fileSystemObject, Scripting. dictionary, MSWC. adRotator, MSWC. browserType, MSWC. nextLink, and MSWC. contentRotator. there are using 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 uugly message but at least the Web Server can quit executing your darned greedy script and go about other business.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.