Low cost ecommerce web development India flash website design
The Server object
The Server object provides access to methods and properties on the server.
Most of these methods and properties serve as utility functions.
28
Syntax
Server.property|method
Properties
ScriptTimeout
The amount of time that a script can run before it times out.
Methods
CreateObject
Creates an instance of a server component. This component can be any
component that you have installed on your server (such as an ActiveX ).
HTMLEncode
Applies HTML encoding to the specified string.
MapPath
Maps the specified virtual path, either the absolute path on the current server
or the path relative to the current page, into a physical path.
URLEncode
Applies URL encoding rules, including escape characters, to the string.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73