Low cost ecommerce web development India
flash website design
THE OBJECT MODEL
ASP is a scripting environment revolving around its Object Model. An Object
Model is simply a hierarchy of objects that you may use to get services from.
In the case of ASP, all commands are issued to certain inbuilt objects, that
correspond to the Client Request, Client Response, the Server, the Session &
the Application respectively. All of these are for global use
Request: To get information from the user
Response: To send information to the user
Server: To control the Internet
Information Server
Session: To store information about and
change settings for the user's
current Web-server session
Application: To share application-level
information and control settings
for the lifetime of the application
The Request and Response objects contain collections (bits of information
that are accessed in the same way). Objects use methods to do some type of
procedure (if you know any object-oriented programming language, you
know already what a method is) and properties to store any of the object's
attributes (such as color, font, or size).
freelance web designer India web development
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