Vous êtes sur la page 1sur 18

Karpagam Arts and Science College (Autonomous) Department Of Computer Science 300 One Mark Questions Class: II M.

Sc(CS) Subject: Web Technology

S. No Questions
1 What does HTML stand for? Choose the correct HTML tag for the 2 largest heading What is the correct HTML tag for 3 inserting a line break? What is the correct HTML for adding 4 a background color? Choose the correct HTML tag to 5 make a text bold Choose the correct HTML tag to 6 make a text italic 7 How can you make an e-mail link? Which of these tags are all <table> 8 tags? Choose the correct HTML to left-align the 9 content inside a tablecell How can you make a list that lists 10 the items with numbers? How can you make a list that lists 11 the items with bullets?

ch1
Home Tool Markup Language <h6> <br> <body color="yellow"> <bld> <ii> <a href="mailto:xxx@y yy"> <table><head><tf oot> <td align="left"> <ul> <list>

ch2

Hyper Text Markup Language <head>

ch

Hyperlinks and Text Markup Language <h1>

ch4
none <heading>

Ans
2 3 1

<lb> <break> none <background> yellow</backg <body round> bgcolor="yellow"> none <bb> <italics> <a href="xxx@yy y"> <thead><body ><tr> <td leftalign> <ol> <ol> <b> <i> <bold> none

1 3 3

<mail>xxx@yyy</ <mail mail> href="xxx@yyy"> <table><tr><td> <table><tr><tt>

1 3 1 2 3

<td valign="left"> <tdleft> <dl> <ul> <list> <dl> <input type="checkbox" > <list>

What is the correct HTML for making <checkbox> 12 a checkbox?

<input type="check"> <check> <input What is the correct HTML for making type="dropdo a drop-down list? <input type="list"> wn"> <select> 13

What is the correct HTML for making 14 a text area? Where in an HTML document is the correct place to refer to an external 15 style sheet? Which HTML tag is used to define an 16 internal style sheet? 17 Which is the correct CSS syntax? Inside which HTML element do we 18 put the JavaScript? HTML tags are surrounded by the 19 two characters____ _________is used to insert a 20 comment in the HTML source code _______ is the syntax for the 21 comment tag used in HTML _______ is the HTML Attribute which defines the body of an HTML 22 document _______ is the HTML Attribute which 23 defines an HTML table _________ is the tag used to 24 emphasized the text ____________ is the tag used to 25 defines small text _________is the tag defines how to 26 divide the window into frames __________ is the tag used to 27 define a row ___________ is the tag used define 28 a cell ____ are used to select different 29 kinds of user input. ______ is an area that can contain 30 form elements. ________ are used when you want the user to select one of a limited 31 number of choices.

<input type="textarea"> At the end of the document <style>

<input type="textbox "> <textarea> At the top of the document In the <head> section

none In the <head> section

<css> <script> none {body;color:bl {body:color=black body {color: black} ack} (body} body:color=black <javascript> < and > Head Tag <!-- This is a comment --> <head> <tr> <emphasize> <big> <frame> <tr> <tr> HTML Forms table Check Buttons <script> << and >> Title Tag <-- This is a comment --> <body> <table> <emp> <strong> <frameset> <td> <table> HTML Table form buttons <js> <<!-- and > The comment tag <!-- This is a comment !--> <title> <td> <em> <small> <framest> <table> <td> Html Lists lists Radio Buttons <scripting> none None none none none none none none none none none none none

1 1 3 1 3 1

2 2 3 3 2 1 3 1 2

_________ are used when you want the user to select one or more options of a limited number of Checkboxes 32 choices. The _____ attribute is used to define 33 an "alternate text" for an image. _________ is the tag used to define 34 a image. __________ is the tag used to defines a clickable area inside an 35 image map The ___________ attribute specifies a background-color for an HTML 36 page. The ________ attribute specifies a background-image for an HTML 37 page. _______ can be defined as a hexadecimal notation for the combination of Red, Green, and Blue 38 color values (RGB). __________is the attribute where 39 the linked document will be opened. _______ is the tag used to define an 40 input. _________ is the tag used to define 41 the definition list ________ is the tag used to define 42 the definition terms _______ is the tag used to define 43 the paragraph _______ is the tag used to define 44 horizontal line 45 ______defines the largest heading. 46 _____ defines the smallest heading. _______Defines the document's 47 body alt <img> <imgmap> bgcolr background

buttons align <image> <area> bgcolor Bground

Radio Buttons src <im> <image> Bgcolor() Backgrd

none alter none <img> none none

1 1

HTML colors target <input> dl dl p hr <h2> <h6> <body>

HTML Table Source <read> dt dt pa hrr <h1> <h1> <bg>

Html Lists src <inputs> dm dd paragraph br <h6> <h2> <bodyDoc>

none none none none none none brr <h5> <h3> none

1 1 1 2 1 1 2 1 1

48 SGML Stands for_____ ____________ element is used to include style information to the 49 browser. _________is the attribute of the body tag which can be used to specify the url of an image to tile as 50 the document background. ____ is the attribute specifies that 51 the anchor is the start of a hyperlink. _____ element is used to designate a section of text that is already 52 formatted for display. _______ is the element to denote a 53 citation ____ element is used to denote 54 italics 55 _____ is used for underline ________ element showing 56 subscripts. ________ element showing 57 superscripts.

Standard Generalized Markup Language <style>

Standard General Mark Up Languae <body>

Source General Markup Languae <html>

None none

<style> background <body> <strong> <i> <i> <sup> <sup> D hyper text markup language

background body

<body> href

none none NONE none none none none none Dialog Hypertext Markup Language response.write(" Hello World")

<background> <pre> <cite> <tt> <tt> <sub> <sub> Dynamic Hypertext Markup Language "Hello World" The <head> section <script src="xxx.js"> alertBox="Hell o World" <em> <u> <u> <s> <s> Direct Hypertext Markup Language ("Hello World") The <body> section <script name="xxx.js"> msgBox("Hello World")

3 2 1 3 2 1

58 DHTML stands for ___

What is the correct JavaScript syntax document.write("H ello World") 59 to write "Hello World"? Both the <head> section and the Where is the correct place to insert a <body> section are correct 60 JavaScript? What is the correct syntax for referring to an external script called <script href="xxx.js"> 61 "xxx.js"? How do you write "Hello World" in alert("Hello World") 62 an alert box?

none none alertBox("Hello World")

2 4

63 How do you create a function? How do you call a function named 64 "myFunction"? How do you write a conditional statement for executing some 65 statements only if "i" is equal to 5? 66 What does CSS stand for? what is the correct HTML for making 67 a text How can you add a comment in a 68 JavaScript?

function myFunction() myFunction() if (i==5) Computer Style Sheets <input type="textfield"> 'This is a comment

function=myFu nction() call myFunction() if i=5 Creative Style Sheets <input type="text"> <!--This is a comment--> //This comment has more than one line//

function:myFuncti on() call function myFunction if i==5 then Colorful Style Sheets <textfield> //This is a comment <!--This comment has more than one line-->

none none if i=5 then Cascading Style Sheets <textinput type="text"> none

1 1

1 4 2 3

What is the correct JavaScript syntax /*This comment to insert a comment that has more has more than one line*/ 69 than one line? What is the correct way to write a 70 JavaScript array? ______________ tag is used to specify alternate content for browsers that do not support 71 Javascript 72 CSJS Stands for ________

var txt = new var txt = new var txt = new var txt = new Array:1=("tim")2 Array(1:"tim",2:"ki Array="tim","k Array("tim","kim", =("kim")3=("jim m",3:"jim") im","jim" "jim") ")

73 SSJS Stands for_________ Javascript is a ___________ typed Strongly 74 Language. In every page the contents of documents ,such as title background color, links and Forms are contained Body 75 in ____ A _________ is a "container" for information Statements 76 you want to store __________ is a any valid set of literals operators, and expressions, 77 that evaluates to a single value.

<Noscript> Client Server Java Script Server Side Javascript

<script> Client Side Javascript Server Server Javascript Loosely

<javascript>

none

1 2 1 2

Client Side J Script None Server Side J Script None Hardly None

Head Variables

Title Expressions

None None

1 2

Statements

Variables

Expressions

None

78

79

80

81

82

83

84 85 86

87

The output of the following statements is "E-academy"+"SouthEx" is________ ______________ is a discrete set of statements which perform some action . _________ function evaluates a string of javascript code without reference to a particular object. _________ function evaluates an argument to determine whether it is a finite bumber. __________ function evaluates an argument to determine if it is not a number ___________ are mechanism by which browsers respond to user actions. ______ event occur when user removes focus from window of form element. __________ event occurs user presses or holds down a key _________ event occur when user loads the page in the navigator. _________ is a collection of properties and methods all classes under a single name.

"EacademySouth- E-academySouthE-academySouth-Ex Ex" Ex' function myFunction() Is finite isFinite isFinite Events Abort Key Down Load Objects function eval eval eval arrays blur KeyPress Click Class Date Date open() open() Alert(Text) Statements is Nan is Nan is Nan Functions Change KeyUp Abort Data toGMTString toGMTString Focus() Focus() Alert(txt)

None Variables none none none none Error none None None none none Blur() Blur() None

2 2 1

________ method is used to convert ToLocaleString 88 a date to a string in Internet GMT. ________ method is used to returns 89 a string value of a dateobject. _________ is a method used to 90 close the specified window. ___________ is a method which 91 gives a focus to a window. _________ is a method used to display an alert dialogbox with a 92 message. toString Close() Close() Alert(Message)

1 1 3

___________ is a method that repeatedly evaluates an expression or invokes a function after the elapse Setinterval() 93 of specified time interval __________ is a method which displays a confirm dialog box with ok Confirm(text) 94 and cancel buttons. __________ is the property of document object which specifies the background color of the document. ________ object that enable scripts to interact with and exercise control over HTML forms. __________ are small memory resident pieces of information sent from a server to Clients Computer ____________ might contain infromation such as login, Registration information, online shopping cart information, user preferences and etc. The word _________is a standard JavaScript command for writing output to a page.

SetInterval(ex SetInterval(expre pression, SetInterval(Expres ssion, micro milliseconds) sion,seconds) seconds) Confirm(Messs age) Confirm(string) None

95

BgColor Document Cookies

Bgcolor Window Sessions

bgColor Form Object

BGColor Navigator none

96

97

98

Cookies document.write The two forward slashes at the end of comment line (//) title title hello JavaScript code

Sessions

Object

none none

99

______ is the JavaScript comment 100 symbol. JavaScripts in the ___ section will be 101 executed WHILE the page loads. JavaScripts in the____section will be 102 executed when CALLED. What is output for the following line. 103 Document.write("Hello" ) ______is a sequence of JavaScript 104 statements.

document.disp lay document.output The one forward slashes at the end of comment line (/) /* */ Head head Hello body body Hello'

none none none "hello" none

3 2 2 1

JavaScript line java

A _________value can change 105 during the execution of a script. Variable names must begin with 106 ________ ________ can only be accessed 107 within that function ________ are the variables can be 108 accessed outside of all functions. _______is an Object Oriented 109 Programming (OOP) language. _________are the values associated 110 with an object. _________ are the actions that can 111 be performed on objects. _________is used to manipulate a 112 stored piece of text. ________ is used to work with dates 113 and times. ________is used to store a set of 114 values in a single variable name. _______ is used to convert a nonBoolean value to a Boolean value 115 (true or false). ______allows you to perform 116 common mathematical tasks. ________ is the method which is used to return a random number 117 between 0 and 1. _____is the method used to return the number with the highest value of 118 two specified numbers. ________ is the method used to return the number with the lowest 119 value of two specified numbers. _________ is often used if you want to make sure information comes 120 through to the user. ____ is often used if you want the 121 user to verify or accept something.

variable's a letter variable local variable JavaScript Attributes Methods Math Object Date object Array object

Comments the underscore character local variable variable c Functions Functions String object Math Object Math Object Math Object The Boolean object

statements both a & b global Variable global Variable cobol Properties Attributes Boolean Object String object String object String object Math Object rund() maximum() maximum() Prompt box Prompt box

none none none none fortron none Properties none Boolean Object Boolean Object

3 2 3 1 3 1 2 1 1

The Boolean object Math object

Array object String object none none none none none

1 1

random()

max() min() min() confirm Box confirm Box

max()

max()

An alert box An alert box

1 2

_______ is often used if you want the user to input a value before 122 entering a page.

An alert box

confirm Box Cancel

Prompt box Ok and Cancel String function:myFuncti on() call myFunction() for (i <= 5; i++)

none none None none None for (i = 0; i <= 5)

When an alert box pops up, the user 123 will have to click ______to proceed OK _______is made up of any number 124 of characters. Character function myFunction() 125 How do you create a function? How do you call a function named myFunction() 126 "myFunction"? 127 How does a "for" loop start? What is the correct way to write a 128 JavaScript array? How do you round the number 7.25, 129 to the nearest whole number? How do you find the largest number 130 of 2 and 4?

1 3 1 1 2

Sttring function=myFu nction() call function myFunction for (i = 0; i <= for i = 1 to 5 5; i++) var txt = new var txt = new Array:1=("tim Array("tim","kim"," ")2=("kim")3 jim") =("jim") Math.round(7.25) Math.ceil(2,4) round(7.25)

var txt = new var txt = new Array(1:"tim",2:"ki Array="tim","kim m",3:"jim") ","jim" rnd(7.25) Math.rnd(7.25) top(2,4) statusbar = "put your message here" None

1 2

Math.max(2,4) ceil(2,4)

window.status("put How do you put a message in the your message here") 131 browser's status bar? How do you find the client's browser client.navName 132 name?

window.status = "put your status("put your message here" message here") navigator.appNam browser.name e Four. The "for" loop, the "while" loop, the "do...while" loop, and the Two. The "for" How many different kind of loops are "loop...until" loop and the One. The "for" loop loop "while" loop 133 there in JavaScript? ________ allows you to control the user's interaction with your forms and to process form data as the Javascript java c 134 users enter it.

2 3

none

c++

which is the following is a floating 135 point number. In javascript , String is enclosed 136 using __ 137 the possible boolean values are JavaScripts programs are typically 138 ___ ________ event occurs when user 139 depresses a mouse button. _________ event occur when user 140 moves the cursor _________ event occurs when user moves cursor out of a client side 141 image map or link. _______ event occurs when user 142 submits a form

3 "" TRUE programs MouseMove MouseMove MouseMove Submit

3.987 ' ' FALSE event driven programs MouseDown MouseDown MouseDown both a & b both a & b

4456 none none none none None None None focus Active Standard Pages

2 3 3 2 2 1

Server Side Script MouseOut MouseOut MouseOut links

3 1 1 1

143 What does ASP stand for? ASP server scripts are surrounded by <%...%> 144 delimiters, which? How do you write "Hello World" in 145 ASP 146 "<%=" is the same as: What is the default scripting 147 language in ASP?

Forms All Standard Active Server Pages Pages

"Hello World" <%Equal JavaScript JavaScript is the default scripting language Request.Form Request.Form The Application object

<%>...</%> Document.Writ e("Hello Response.Write("H World") ello World") none <%Document.Writ <%Response.Wri <%Write e te PERL Start the document with: <% language="jav ascript" %> EcmaScript VBScript End the Start the document document with: with: <%@ <% language="javascr language="javas ipt" % cript" %> none none none

A Server Page <script>...</script > <&>...</&>

3 4 4

148

149

150 151

How can you script your ASP code in JavaScript? How do you get information from a form that is submitted using the "get" method? How do you get information from a form that is submitted using the "post" method? Which ASP property is used to identify a user?

Request.Query String request object Request.Query String request object The Server object An ASP Cookie

1 3

Which one of these events is a 152 standard Global.asa event? Global.asa is required for all Web 153 sites Which of these objects is NOT an 154 ASP component? ASP comes with a standard component that displays a different advertisement each time a user enters or refreshes a page, what is 155 the name of this component? How do you create a 156 FileSystemObject? ________is a program that runs 157 inside IIS 158 IIS stands for _______ 159 An ASP file has the file extension ______ are used to store information about ONE single user, and are available to all pages in one 160 application _______ are used to store information about ALL users in a 161 specific application The _______ object may be used to 162 retrieve user information from forms The _________command is used to 163 create cookies. The _______ command is used to 164 retrieve a cookie value. The ___________ is used to store information about, or change 165 settings for a user session.

Global.asa doesn't have Application_OnStar any standard t events Only for ASP Web sites TRUE File Access LinkCounter

Session_Start FALSE Counter

Session_id none AdRotator

1 2 3

Advertise

Advertisement RotateAds Server.CreateO Server.CreateObjec bject("Scriptin t("FileSystemObjec g.FileSystemO Create("FileSyste t") bject") mObject") ASP HTML Intranet Internet Information Information Server Server .asp .ap Session variables Session variables JavaScript Internet Information Services .asa

AdRotator Create Object:"Scripting. FileSystemObject " DHTML none .aspa

1 1

3 1

Application variables

Response Variables

Request Variables

Response Variables

Application variables

None

Request Object.Cookies Response.Cookies

Response

Object

Application None None

1 3 2

Request.Cookies Response.Cookies Request.Cookies Object.Cookies Application Object

Request Object

Session object

Object

___________is a method used to Abandon 166 end a session immediately. A group of ASP files that work together to perform some purpose is 167 called An Application _________ is used to store and 168 access variables from any page Requst Object _______ is used to insert the content of one ASP file into another ASP file before the server executes #include directive 169 it.

Aband

Quit

Terminate

An Program The Application object #inclu directive

An Object Session Object #include <directive>

None None

1 2

None

170

171

172

173

Which of the following is the correct syntax to include a file in asp. ________ is an optional file that can contain declarations of objects, variables, and methods that can be accessed by every page in an ASP application. _______is a file must be stored in the root directory of the ASP application _________is the event occurs when the FIRST user calls the first page from an ASP application. ______is an event occurs EVERY time a NEW user requests his or her first page in the ASP application _______is an event occurs EVERY time a user ends a session. A user ends a session after a page has not been requested by the user for a specified time _______is an event occurs after the LAST user has ended the session. Typically, this event occurs when a Web server stops ________ is used to send output to the user from the server

<!--include file ="somefilename"-->

<include file ="somefilename <!--#include file " ="somefilename"--> None

The Global.asa file The Local.asa file

The Local.asa file

The Glo.asa File

None None Application_OnEn d Application_OnEn d

The Global.asa file The Glo.asa File

Application_OnStar Session_OnSta t rt Session_OnEnd Application_OnStar Session_OnEn t d

174

Session_OnStart

175

Session_OnEnd

Application_On Start Session_OnStart

Application_OnEn d Application_OnEn d None

176 177

Application_On Start Session_OnStart The Session The ASP Response The Request Object Object object Session_OnEnd

4 3

178

179

180

181

_______is the property of response object which specifies whether to buffer the page output or not _______is the property of response object which sets whether a proxy server can cache the output generated by ASP or not _________ is a method which adds a new HTTP header and a value to the HTTP response _____________is a method which adds a string to the end of the server log entry

Buffer

CacheControl

Buffer Reader

BufferWriter

Buffer

Buffer Reader

CacheControl

None

AppendToLog

AddHeader

Flush

Redirect

AppendToLog

AddHeader

Redirect

Flush

_________is a method which Sends 182 buffered HTML output immediately

AppendToLog

Redirect

Flush

AddHeader

____________is the method which 183 Redirects the user to a different URL AppendToLog _________is a method which Writes 184 a specified string to the output Write ________is used to get information 185 from the user Session Object _________is the property which returns the total number of bytes the 186 client sent in the body of the request Total string ____________ is the method which retrieves the data sent to the server from the client as part of a post 187 request and stores it in a safe array ________ is a method Prevents other users from modifying the 188 variables in the Application object __________is a method which Enables other users to modify the 189 variables in the Application object

Flush

Redirect

AddHeader

AppendToLog Flush The Asp The ASP Request Response Object object

Redirect None

1 3

Total Bytes

Total Bits

Total Size

BinaryRead

BinaryWrite

Binary

None

Lock

Unlock

Free

None

Unlock

Lock

Free

None

190

191

192

193

194

195

_________is used to store information about, or change settings for a user session _________ is the property of session Object which Returns a unique id for each user. The unique id is generated by the server ___________ is the method which Deletes an item from the Contents collection ____________is the method which Deletes all items from the Contents collection _____________ is the property of session Object which Specifies the character set that will be used when displaying dynamic content ___________ is the event of session object which Occurs when a session ends

The Session object

TheApplication Object

The Request Object

None

SessionID

LCID

CodePage

None

Contents.RemoveAll

Contents.remove All Contents.Remove Contents.remove All Contents.Remove

Contents.remove

Contents.RemoveAll

Contents.remove

Code

ScriptTimeout

CodePage

None

Session_OnEnd

Session_OnStart Session_onStart

None

___________ is the event of session object 196 which Occurs when a session starts __________ is used to access properties and methods on the 197 server.

Session_OnEnd

Session_Onend

Session_OnStart

Session_onStart

The ASP Server object

The ASP Session The ASP response object object

none

__________ is the property of server object Which Sets or returns the maximum number of seconds a 198 script can run before it is terminated Scripttimeout _______________ is the method which Creates an instance of an 199 object CreateObject _______________ is the method which Executes an ASP file from 200 inside another ASP file Execute _______________ is the method which Returns an ASPError object that describes 201 the error condition that occurred

ScriptTimeout

scriptTimeout

none

Createobject

createObject

none

execute

Exe()

exe()

GetlastError

GetLastError

getLastError

none

202

203

204

205

206

_____________ is the method which Applies HTML encoding to a specified string _________is the method which Maps a specified path to a physical path _________is the method which Sends (transfers) all the information created in one ASP file to a second ASP file _________is a method which Applies URL encoding rules to a specified string _______ is used to display detailed information of any error that occurs in scripts in an ASP page.

HTMLEncode

HTMLdecode

HTMLcode

HTMLCode

MapPath

Mappath

mapPath

none

Send

Transfer

sends

Transfers

URLEncode

URLdecode

urlEncode

none

The ASPError object

response object

request object

none

________ is used to access the file 207 system on the server ____________ is the property of filesystem which Returns a collection of all Drive objects on the computer _______________ is the method which Appends a name to an existing path ___________is the method which Copies one or more files from one location to another _______is the method which Creates a new folder _________is the method which Checks if a specified file exists ________ is the method which Returns a Folder object for a specified path ____________ is the method which Returns the complete path from the root of the drive for the specified path

Drives

The FileSystemObject Folders

none

208

The FileSystemObject

Folders

Drives

none

209

PathWay

Path

BuildPath

none

210 211 212

CopyFile CreateFolder FileExists

Copyfile Createfolder Fileexists

copyFile createfolder Exists

none none exists

1 1 1

213

GetFolder

Folder

getFolder

folder

214

GetabsoultePath GetAbsoultePathName Name

GetPath

none

________is used to return information about a local disk drive 215 or a network share.

Folder Object

File Object

DriveObject

None

___________ is the property of drive object which Returns the amount of available space to a user 216 on a specified drive or network share AvailableSpace ________ is the property of drive object which Returns the total size of a specified drive or network share _________ is used to return information about a specified file. _________ is the method which Copies a specified file from one location to another __________ is the method which Deletes a specified file ________ is the method which Moves a specified file from one location to another

Availablespace

TotalSpace

Space

217 218

AvailableSpace The Drive

TotalSpace

TotalSize

Space none

3 3

The Folder Object The File object

219 220

Copy() Delete

copy() Del

cpy() DELETE()

none NONE

1 1

221

move()

mov

Moves()

None

___________ is used to return 222 information about a specified folder. ________ is used to store 223 information in name/value pairs _____ can be used to access 224 databases from your web pages. 225

The Folder Object The Folder Object ADO ActiveX Data Objects

The Drive Object The Drive Object AAO ActiveX Date Objects

The File Object The Dictionary object ADA Active Data Objects

None None NONE None

1 3 1 1

ADO stands for _______ ___________component creates an AdRotator object that displays a different image each time a user 226 enters or refreshes a page. The ASP AdRotator ___________is the method which Returns HTML that displays the advertisement in the GetAdvertisement 227 page

The ASP Browser The ASP Content Capabilities Linking Getadvertisem ent GetAdvertisement

none nONE

228

229

230

231

232 233

234

235

________component creates a BrowserType object that determines the type, capabilities and version number of each browser that visits your site. ________component is used to create a quick and easy navigation system ________ is the method which Returns the number of items listed in the Content Linking List file ________is the method which Returns the index number of the current item in the Content Linking List file. ________is the component displays a different HTML content string each time a user visits or refreshes the page. ________ is the method which Gets and displays a content string _________ is the method which Retrieves and displays all of the content strings in the text file ___________ is the collection of request object that holds variables value in the query.

The ASP AdRotator The ASP Browser Capabilities GetListCount

The ASP Content The ASP Browser Linking Capabilities The ASP Content Linking The ASP AdRotator GetListIndex getListCount

nONE

none none

GetListIndex

GetListCount

getListCount

none

Content Rotator ChooseContent GetAllContent QueryString Microsoft Technology Personal Web Server Server Sise Scripting Language Windows 95 Session ID OnEnd OnEnd

AdRotator

Content Browser

none None None none none none none Nome NONE None None

1 1

Choosecontent ChooseCnt GetallContent String Sun Micro System Personal Web Service Client Side Javascript windows Session OnStart OnStart GetContent Querystring IBM Personal Web Socket Cilient Side Scripting Windows NT 4.0 Application ID both a & b both a & b

1 1 1 1 3 1 1 2

236 ASP is a 237 PWS Stands for 238 ASP is a _________ 239 IIS need ________ to run asp programs ______ is the property of session object 240 that identifies the current session ______ event is fired every time the web 241 application is stopped. ______ event is fired every time the web 242 application starts.

_____ is a collection of html ducuments 243 reside on the server. _____ is the method of Request objects that 244 retrives data sent by the client _____ can be accessed through thecookies 245 collection 246 _____is equivalent to the form collection _____is the server Variables which returns the total length of the body of the http 247 request sent by the client. _____is the property of server object which specifies the amount of time for which the 248 server will process the script. ______is the method which executes the specified SQL Statement or stored 249 Procedure ______ is the method closes an open 250 Recordset Object.

Web Site BinaryRead Cookies QueryString

Page BinaryWrite Sessions Query

Program Binary Applications Collection

none None none None

1 1 1 1

CONTENT_TYPE

CONTENT_LENG TH both a & b

none

Scripttimeout

ScriptTimeout

ScriptTimeOut

None

Execute Close

Start execute

Close Open

None none

1 1

Vous aimerez peut-être aussi