时间:2021-05-28
Overview:
The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections.
List of Methods:
Server MethodsCreateObject( )Server.CreateObject("ADODB.Recordset")
Create an instance of an ObjectExecute( )Server.Execute("fileName.asp")
Executes an outside file (effect is similar to SSI)GetLastError( )Server.GetLastError()
Returns location and description of the last ASP errorHTMLEncode( )Server.HTMLEncode("some String")
Encodes string to HTML charactersMapPath( )Server.MapPath("\\virtualFolder")
Converts virtual path to physical pathTransfer( )Server.Transfer("fileName.asp")
Transfers execution out of one page and into anotherURLEncode( )Server.URLEncode("some String")
Encodes string to URL standards
Below is the script for Lesson 14.
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.
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
使用asp尽量减少服务器端的工作量,这样就应该多使用javascript,把所有提交字段使用javascript或vbscript检测后提交给服务器,这样服务器
服务器是最为常用的网络设备之一,它分为很多种类型,其功能也有很大差异,比如asp服务器,就属于网站程序的服务器。下面就给大家介绍什么是asp服务器,asp服务器
ASP是Web上的客户机/服务器结构的中间层,虽然它使用脚本语言(JavaScript,VBScript等)编写,程序代码在服务器上运行,在客户端仅可看到由AS
运行asp文件首先我们需要搭配运行环境,运行ASP文件需要的服务器是IIS服务器,所以我们要来安装和配置IIS服务器,其实相比于其他的服务器,IIS简单很多,因
asp/vbscript将json字符解析为json对象的方法,如果asp使用jscript来编写服务器端代码操作json字符串就简单了,vbscript需要M