








Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
E-Commerce is a growing and dynamic field. It is of special concern for the IT students. Following are the fundamental aspects of these Lecture Slides : Object Model, Language, Runat, Cript, Body, Programming Language, Scripting Languages, Model Provides, Complexities, Server Programming
Typology: Slides
1 / 14
This page cannot be seen from the preview
Don't miss anything!









-^
IIS receives HTTP request from client.
-^
IIS retrieves files from disk or memory.
-^
If .asp or .asa file, passed to ASP.dll
-^
Perform pre-processing directives (scriptinglanguages, transactions)
-^
ASP.dll checks syntax (IIS 5)
-^
ASP.dll interprets code and renders content
-^
ASP passes output to IIS, which passes to client.
Moo!
"language=VBScript
<% Dim
'Loop
Counter
Dim
iSum
'Sum
of
the
numbers
%> Sums<
/title
"
""
iSum
iSum
Nextresponse.write
""
CSTR(iSum)
""
%>
Response.End•^
Stop any further processing of page and send thecurrent buffer to the client. Response.Clear•^
Clear the existing buffer contents. Nothing sent toclient. Response.Flush•^
Send the current buffer to the client now.
Response.Redirect•^
Redirects the client's request to another URL.
-^
MUST use buffering (response.buffer=true) to usethis method.
-^
Note this sends a HTTP response to client.
-^
IIS 5 has new methods for dealing with this.
<%@ language=VBScript
%>
<%^
option explicit
%>
<% 'Server-side includes go here %><%'Filename:'Purpose:'Arguments:'Author:'Revised:'Declarations and bufferingConstantsDimsInitial values%>Title