Data Warehousing (1107) Databases (3004) JAVA Related 2673) MainFrames (975) Microsoft Related (2296) Networking (553)
Operating Systems (919) Programming (3254) SAP (2318) Testing FAQS (1674) Testing Material (252) Web Related (994)
Custom Search

What is 1000Projects

'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc

how it works?

Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!

Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!


Category Articles
What are the advantages of Cookies over Session Object?
Added on Fri, Jan 1, 2010
1) It informs each page what session the request belongs to when a user accesses during a session. 2) It retrieves all the session information stored on the server. 3) Cookies can persist for a much longer period of time than session that has a... Read More
How many Max Cookies can we create in Server?
Added on Sat, Jan 2, 2010
A. 10 B. 20 C. 30 D. 40 Read More
What happens when a client submits a form which changes the value of an Application variable?
Added on Fri, Jan 1, 2010
A. Client actions cannot change Application variables. B. The change is not visible to any client until the application is stopped and started. C. The change is only visible to future requests made by that client during their current session. D.... Read More
What is the use of following Statement Response.Expires=120
Added on Sat, Jan 2, 2010
A.The page will be removed form cache after 120 Hours B.The page will be removed form cache after 120 Sec C.The page will be removed form cache before 120 Min D.The page will be removed form cache after 2 Hours (Answer) Read More
How do assign the memo data type in ASP page as variable? and I want to place that variable in HTML's textarea as its value?
Added on Fri, Jan 1, 2010
I tried it with the access database with description as memo field. <%@LANGUAGE=" VBSCRIPT"%> <% set conn=server.CreateObject("ADODB.connection") conn.open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & server.MapPath("db1.mdb... Read More
What are the ASP Scripting Objects?
Added on Fri, Jan 1, 2010
The Dictionary object, the FileSystemObject object, TextStream object. Read More
What is the result of using Option Explicit?
Added on Sat, Jan 2, 2010
A. This applies only to Visual Basic, not VBScript. B. All variables must be dimensioned before use. C. All variables are dimensioned at run-time. D. Forces all <SELECT> controls to have a SELECTED option. E. Requires all variables be... Read More
What is RAID in ccna?
Added on Sat, Jan 2, 2010
A method used to standardize and categorize fault-tolerant disk systems. RAID levels provide various mixes of performance, reliability, and cost. Some servers provide three of the RAID levels: Level 0 (striping), Level 1 ( mirroring), and Level 5 ... Read More
How can you disable the browser to view the code?
Added on Fri, Jan 1, 2010
Writing codes within the <! -- //-- > Tag. Read More
What is Cookies collection?
Added on Fri, Jan 1, 2010
Cookies are text files that store information about the user by which the web server identifies and marks each different visitor to a web site and determines where a user has been before. A cookie can store information only when the user sends it.... Read More
What is an Err Object?
Added on Fri, Jan 1, 2010
Name it?s properties and methods? Read More
What is a Dictionary object
Added on Sat, Jan 2, 2010
It lets you store and retrieve information in a flexible data structure. Each value or information stored in a Dictionary is associated with a key through which the information can be retrieved. Read More
Which of the following are Server Object methods ( Choose Two)
Added on Sat, Jan 2, 2010
A. HTMLEncode,MapPath (Answer) B. URLEncode,ScriptTimeout C. URLEncode,CreateObject (Answer) D. ScriptTimeout,Abandon Read More
Explain the POST & GET Method or Explain the difference between them
Added on Fri, Jan 1, 2010
POST METHOD: The POST method generates a FORM collection, which is sent as a HTTP request body. All the values typed in the form will be stored in the FORM collection. GET METHOD: The GET method sends information by appending it to the URL (with a... Read More
What is the difference between Server-side validation and Client-side validation
Added on Fri, Jan 1, 2010
Client-side is faster than server-side as the networking time from client to server is saved server-side is done on the server. Then the server converts the data into an html page and sends to the browser. server-side is more secure as the user... Read More
What is a "Virtual Directory"?
Added on Fri, Jan 1, 2010
Virtual directories are aliases for directory paths on the server. It allows moving files on the disk between different folders, drives or even servers without changing the structure of web pages. It avoids typing an extremely long URL each time to... Read More
How many global.asa files can an Application have?
Added on Fri, Jan 1, 2010
Only one global.asa file and it?s placed in the virtual directory?s root. Read More
What is the difference between Querystring collection and Form collection
Added on Fri, Jan 1, 2010
The main difference is that the Querystring collection gets appended to a URL(with a ? Read More
How many types of cookies are available in asp?
Added on Fri, Jan 1, 2010
There are 2 types of cookies Persistent and Non-persistent Read More
What is the maximum size of an array
Added on Fri, Jan 1, 2010
Up to 60 dimensions. Read More
What is the difference between Server.Transfer and response.redirect
Added on Fri, Jan 1, 2010
Server.Transfer is used when redirecting the webpage with in the same application whereas Response. Redirect is applicable towards the redirection of webpage between 2 applications Response.Redirect will instruct browser to call a particular... Read More
Name the ASP Objects?
Added on Fri, Jan 1, 2010
. Session Object 2. Application Object 3. Server Object 4. Request Object 5. Response Object 6. Object Context 7. Error Object Read More
Which choice is NOT an ADO collection?
Added on Fri, Jan 1, 2010
A. Properties B. Records (Answer) C. Fields D. Errors E. Parameters Read More
How are sessions maintained?
Added on Fri, Jan 1, 2010
A. The browser sends a cookie to the server with each request. (Answer) B. The browser sends a Querystring variable to the server with each request. C. The browser sends a hidden Form variable to the server with each request. D. The browser... Read More
What is Request Object?
Added on Fri, Jan 1, 2010
Gets information from the user. It has five collections by which values can be accessed. They are: Querystring, Form, Cookies, Server Variables & ClientCertificate Read More
What is the difference between client-side script and server-side script
Added on Fri, Jan 1, 2010
Scripts executed only by the browser without contacting the server is called client-side script. It is browser dependent. The scripting code is visible to the user and hence not secure. Scripts executed by the web server and processed by the server... Read More
What is Collection?
Added on Fri, Jan 1, 2010
Collection is a set of name/value pairs where the information supplied by the client is stored. Read More
What is the Order of precedence for ARITHMETIC Operators.
Added on Fri, Jan 1, 2010
^, mod, *or /, -(negation), + or ? right! Read More
What are the collections of Application Object?
Added on Fri, Jan 1, 2010
 Contents collection ? contains all variables added via scripts in global.asa. * Static collection ? contains the names of all objects added via the <OBJECT> tag in global.asa. Read More
What is Extranet?
Added on Fri, Jan 1, 2010
An area of a web site available only to a set of registered visitors. Read More
Which is the default Scripting Language of ASP (server-side)?
Added on Fri, Jan 1, 2010
VBScript Read More
What are the attributes of the <FORM> tags? What are their functions?
Added on Fri, Jan 1, 2010
The two attributes are ACTION and METHOD The ACTION gives the name of the ASP file that should be opened next by which this file can access the information given in the form The METHOD determines which of the two ways (POST or GET) the browser can... Read More
When does the application OnEnd event handler fire?
Added on Fri, Jan 1, 2010
A. After every request for an application document, since web servers are stateless servers. B. As soon as there are no open connections to any application document. C. When the web server is stopped in an orderly fashion. (Answer) D. Twenty... Read More
What is a variable?
Added on Fri, Jan 1, 2010
Variable is a memory location through which the actual values are stored/retrieved. Its value can be changed. Read More
How to handle Error in ASP
Added on Fri, Jan 1, 2010
A. Using On Error Goto <ErrorPart> B. Using On Error Resume C. Using On Error Resume Next (Answer) D. Using On Error Goto 0 Read More
What is a Form collection?
Added on Fri, Jan 1, 2010
The Form collection holds the values of the form elements submitted with the POST method. This is the only way to generate a Form collection. Read More
What does Internet Information Server (IIS) assume to be the default language for Active Server Pages?
Added on Fri, Jan 1, 2010
A. Jscript B. JavaScript C. JAVA D. VBScript E. ECMAScript Read More
How to Display images using Response object?
Added on Fri, Jan 1, 2010
A. Contenttype=Application/Brush B. Contenttype=Image/JPG (Answer) C. Contenttype=Application/paint D. Contenttype=Image/WMF Read More
What purpose is served by the Application.Lock method?
Added on Fri, Jan 1, 2010
A. It locks the Application object, preventing other clients from altering any values in the Contents collection. (Answer) B. It locks the application, preventing the server from responding to any requests for application documents. C. It locks the... Read More
<%
Added on Fri, Jan 1, 2010
Question : <% strName="John Smith" %> Referring to the above, if you want to pass the contents of the strName variable in a hyperlink, which line of code would you use?           Answers: A. This... Read More
What is Application-scope?
Added on Fri, Jan 1, 2010
Application-scope means that variables (and objects) can be accessed from any ASP pages that is part of the application. Read More
Which-code sample will report whether the client?s browser supports cookies?
Added on Fri, Jan 1, 2010
. <% var objFSO = Server.CreateObject(" Scripting.FileSystemObject") Response.Write objFSO.cookiesSupported %> B. You can only use JavaScript for this. C. <% var objFSO = Server.CreateObject("Scripting.FileSystemObject") Response.Write... Read More
What is Server Object
Added on Fri, Jan 1, 2010
Controls the ASP execution environment. It can set the amount of time script can run before an error occurs. Converts a virtual path to a physical path on the server. Takes a user supplied string and encode it into proper format for a URL string. Read More
How will you delete a Cookie?
Added on Fri, Jan 1, 2010
By setting its Expires property to any date prior to today Response. Cookies("cookie name").Expires = Date ? 1. Read More
How can you change the primary scripting language for a page?
Added on Fri, Jan 1, 2010
Specify <%@ LANGUAGE = Scripting language %> Read More
Referring to the above, which line of code would retrieve the selected radio button value?
Added on Fri, Jan 1, 2010
Question : <input type=radio name=rbSex value="M">Male <Input type=radio name=rbSex value="F">Female Referring to the above, which line of code would retrieve the selected radio button value?        ... Read More
What is a Scripting Language?
Added on Fri, Jan 1, 2010
It permits to create more interactive Web Pages. Validation, formatting of web pages can be done. VBScript, JavaScript are some examples. Read More
Give the comment Tags for the following:
Added on Fri, Jan 1, 2010
VBScript : REM & ?(apostrophe) JavaScript : // (single line comment) /* */ (Multi-line comments) Read More
What are the methods in Session Object?
Added on Fri, Jan 1, 2010
The Session Object has only one method, which is Abandon. It destroys all the objects stored in a Session Object and releases the server resources they occupied. Read More
What is Server-Side includes?
Added on Fri, Jan 1, 2010
It provides extra information by which it makes the site easier to manage. It can include text files using the #include statement, retrieve the size and last modification date of a file, defines how variables and error messages are displayed and... Read More
How to Insert the records in a database table by using ASP?
Added on Fri, Jan 1, 2010
<% 'Open a Connection with database Dim DSN DSN="Provider=SQLOLEDB.1; Persist security info=false; user id=sa; password=main; initial catlog=database name Data Source=localhost" set objCon=Server.CreateObject("ADODB.Connection") objCon... Read More
What are the differences between ASP and ASP.NET and is ASP.NET backward cmpatible to ASP.
Added on Fri, Jan 1, 2010
ASP page is non compiled version ie the ASP compiler (interpreter) executes each line of ASP page when the request for a particular page is made... Where as ASP.NET page is the pre-compiled version. When we compile the ASP.NET page, the .NET... Read More
What are the event handlers of Session Object?
Added on Fri, Jan 1, 2010
? Session _OnStart ? This event will be fired when a new user begins a session with the web site. ? Session_OnEnd ? This event is called whenever a session terminates. Read More
What is the difference between Cookies collection and Form/Querystring collection?
Added on Fri, Jan 1, 2010
Cookie collection does not have the Count property. Cookies can have multiple values for the same cookie name but each value can be referred using a key whereas in a Form/Querystring cookie each value has to be referred using an index value. Read More
What are the browsers that can access ASP pages?
Added on Fri, Jan 1, 2010
? Internet Explorer (supports VBScript, JavaScript) ? Netscape Communicator/ Navigator (supports only JavaScript, VBScript can be also added too) Read More
What is an .ASP file?
Added on Fri, Jan 1, 2010
It is a Text File that contains the combination of the following: ? Text ? HTML tags ? Script Commands Read More
The FileSystemObject provides an object interface to drives, directories, and files for which of the following?
Added on Fri, Jan 1, 2010
A. Any local or mapped drive on either the server or the client. (Answer) B. Only files and subdirectories in the web site?s home directory. C. Any local physical drive or mapped drive on the web server. D. Any file system physically located on... Read More
What is Global.asa file?
Added on Fri, Jan 1, 2010
It is text file that contains details about an ASP application, such as when it should begin and end. Read More
What is ASP (Active Server Pages)?
Added on Fri, Jan 1, 2010
ASP is a server side- scripting environment for building dynamic and interactive web pages. Since the scripts run on the server side, the web server does all the processing. Read More
How Many Types of Cookies
Added on Fri, Jan 1, 2010
A. 3 B. 2 C. 1 D. 4 Read More
Which line of code would instantiate the Browser Capabilities component?
Added on Fri, Jan 1, 2010
A. objBrowser = Server.CreateObject("MSWC.BrowserType") B. Set objBrowser = Server.CreateObject("MSWC.BrowserType") C. var objBrowser = Server.CreateObject("MSWC.BrowserType") D. var objBrowser = CreateObject("MSWC.BrowserType") E. var... Read More
What must be installed on an IIS4 machine to use the CDONTS e-mail server object?
Added on Fri, Jan 1, 2010
A. FTP service B. SMTP service C. IIS administrator D. Exchange Server E. IPX/ SPX protocol Read More
What are LOCAL and GLOBAL variables?
Added on Fri, Jan 1, 2010
Local variables lifetime ends when the Procedure ends. Global variables lifetime begins at the start of the script and ends at the end of the script and it can be used by any procedure within the script. Declaring a variable by using the keyword... Read More
What are the tasks performed by <FORM> tags?
Added on Fri, Jan 1, 2010
? <FORM> tags provides space for the user to input values ? the form has a button to submit information back to the server ? It transfers control to another ASP page ? It carries the information in the fields to another ASP page Read More
Which is the default Data types in VBScript?
Added on Fri, Jan 1, 2010
Variant is the default data type in VBScript, which can store a value of any type. Read More
When is the Session_OnStart event fired?
Added on Fri, Jan 1, 2010
A. Upon every request from an application by a client for an . asp document. B. Upon the first request from an application by a client for any file in the application. C. Upon the first request for an .asp document from an application by a... Read More
What happens to ASP pages?
Added on Fri, Jan 1, 2010
The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser. Read More
Can be Arrays resized by using the keyword REDIM?
Added on Fri, Jan 1, 2010
Yes, we can resize using the word redim Read More
What is the function of Buffer in Response Object?
Added on Fri, Jan 1, 2010
Buffer controls the HTML output stream manually. Read More
What does the above code accomplish?
Added on Fri, Jan 1, 2010
Question : <% Response.Redirect("http://www.sql.com") %> What does the above code accomplish?     Answers: The redirection occurs on the server-side, and the first response the browser gets is the head and body... Read More
In the sample code shown above, what will be written to the screen
Added on Fri, Jan 1, 2010
 Question : <SCRIPT LANGUAGE="VBScript" RUNAT=Server> a = 1 </SCRIPT> <SCRIPT LANGUAGE="VBScript"> a = 2 </SCRIPT> <% Response.Write a %> In the sample code shown above, what will be written to... Read More
What is the Order of precedence for ARITHMETIC Operators.^, -(negation), *or /, , mod, + or ?
Added on Sat, Jan 2, 2010
^, mod, *or /, -(negation), + or ? right! Read More
What is the Default ScriptTimeOut for Server Object
Added on Sat, Jan 2, 2010
A. 20 Sec B. 30 Sec C. 60 Sec D. 90 Sec Read More
onStart? and ?onEnd? are events of what object(s)?
Added on Sat, Jan 2, 2010
A. Application only. B. Session only. C. Server only. D. Application and Session only. E. Application, Session, and Server. Read More
What is the command to display characters to the HTML page
Added on Sat, Jan 2, 2010
Typically, a servlet class is instantiated the first time it is invoked. The same instance will be used over several client requests, so all members that are declared in that servlet are shared accross clients. That is what is meant by multi threaded... Read More
What happens to a HTML page
Added on Sat, Jan 2, 2010
The browser makes a HTTP request; the server gives a HTTP response to the browser and the browser converts into a HTML page. Read More
ADO is an object model for accessing which of the following?
Added on Sat, Jan 2, 2010
A. Relational data via Jet. B. Local or SQL data via Jet. C. Relational data via ODBC. D. Non-relational data via DSN-less ODBC. E. All types of data via OLE DB. (Answer) Read More
What is the difference between client-side script and server-side script?
Added on Sat, Jan 2, 2010
Scripts executed only by the browser without contacting the server is called client-side script. It is browser dependent. The scripting code is visible to the user and hence not secure. Scripts executed by the web server and processed by the server... Read More
What is the command to display characters to the HTML page?
Added on Sat, Jan 2, 2010
You can easily connect art to Social Studies by teaching cultural art. Example: If students are learning about Australia, you can teach kids to make Aboriginal Dot Paintings in art. You can also connect art to historical themes by making connections... Read More
Explain the POST & GET Method or Explain the difference between them?
Added on Sat, Jan 2, 2010
POST METHOD: The POST method generates a FORM collection, which is sent as a HTTP request body. All the values typed in the form will be stored in the FORM collection. GET METHOD: The GET method sends information by appending it to the URL (with a... Read More
We have to count the three letter, four letter and five letter words from a file and print the number of three letter, four letter and five letter words. Delimiter is tab, space, and hifen. ( - )
Added on Sat, Jan 2, 2010
Question : We have to count the three letter, four letter and five letter words from a file and print the number of three letter, four letter and five letter words. Delimiter is tab, space, and hifen. ( - ) And we should not consider the line in... Read More
What is application Object?
Added on Sat, Jan 2, 2010
Shares information among users of an application. Gives a notification when an application starts or ends. Read More
What is the Order of precedence for LOGICAL Operators ?
Added on Sat, Jan 2, 2010
NOT, AND, OR, XOR, EQV, IMP Read More
What is http header
Added on Sat, Jan 2, 2010
HTTP headers expose a great deal of information about your client as well as the server you are working, the application you are designing, as well as the environment you are in (SSL, etc.).The functionality for this is held in "Request... Read More
How to display a word document (.doc) file in HTML page using ASP?
Added on Sat, Jan 2, 2010
copy the .doc file to the www root folder example:- data.doc and give the link in the asp page as <html> <head> <title></title> </head> <body> <a href="data.doc">Document</a> ... Read More
What programming model is ASP based on?
Added on Sat, Jan 2, 2010
What programming model is ASP based on? 2 Advantages of using interfaces for data access? 3 What does connection.execute,connection.open do? 4 set application(?varname?)=session what happens here? 5 How do you define disconnected Recordset... Read More
What are the functions in ASP?
Added on Sat, Jan 2, 2010
String Functions Numeric Functions Array Functions Date / Time Functions Variable Testing Functions File System Functions Read More
Referring to the above, what is the value of iPos
Added on Sat, Jan 2, 2010
Question : <% iPos = Instr("Hello World","r") %> Referring to the above, what is the value of iPos?               Answers: The correct answer of Question 3 in ASP is 9 and not 0. Read More
How to Display images using Response object
Added on Sat, Jan 2, 2010
contenttype=Image/jpg Read More
Which is the default Scripting Language on the client side?
Added on Sat, Jan 2, 2010
JavaScript Read More
What is HTML (Hypertext Markup Language)? s
Added on Sat, Jan 2, 2010
It?s a method by which web pages can be built and generally used for formatting and linking text. Read More
What is a FileSystemObject object?
Added on Sat, Jan 2, 2010
It provides access to the physical file system of the web server. It gets and manipulates information about all drives in a server, folders and sub-folders on a drive and files inside a folder. Read More
Naming constraints for a variable ?
Added on Sat, Jan 2, 2010
It can be up to 255 characters Must start with an alphabet Must not contain an embedded period or full-stop Read More
What is a TextStream object?
Added on Sat, Jan 2, 2010
It allows you to access(read/write) the contents of text files stored on the web server. Read More
What is ClientCertificate collection?
Added on Sat, Jan 2, 2010
A ClientCertificate is an encrypted number that is stored in a file on the user?s computer. This stores details of any security certificates included with the request. Read More
What are the special sub-types in VBScript?
Added on Sat, Jan 2, 2010
EMPTY: has no value NULL: Value does not exist (conjunction with database) OBJECT: Read More
What is the difference between Cookies collection and Form/Query string collection?
Added on Sat, Jan 2, 2010
Cookie collection does not have the Count property. Cookies can have multiple values for the same cookie name but each value can be referred using a key whereas in a Form/Query string cookie each value has to be referred using an index value. Read More
What are the tags necessary to be present within the <FORM> tag?
Added on Sat, Jan 2, 2010
<INPUT> tag: Provides input spaces (text boxes, combo boxes, radio button, etc.) on a form called fields. It has three attributes TYPE, NAME and VALUE. TYPE provides the characteristics of the field and the NAME specifies a name to the field by... Read More
How will you delete a Cookie
Added on Sat, Jan 2, 2010
By setting its Expires property to any date prior to today Response. Cookies("cookie name"). Expires = Date Read More
How does the server identify and execute the server-side scripts within HTML code?
Added on Sat, Jan 2, 2010
? Including the RUNAT=SERVER attribute in the <SCRIPT> tag ? Use <% ? %> server script delimiter Read More
How are scripts executed?
Added on Sat, Jan 2, 2010
ASP provides scripting engines that execute the corresponding scripting languages on the server side. Scripts should be encoded within the Delimiters. Read More
What are ARRAYS?
Added on Sat, Jan 2, 2010
Arrays are variables that store items of similar information.DIM ARRAY1(4) (declares an array with the name array1 with 5 elements) Read More
What is Application-scope
Added on Sat, Jan 2, 2010
Application-scope means that variables (and objects) can be accessed from any ASP pages that is part of the application. Read More
Which choice is NOT a property of Dictionary Object?
Added on Sat, Jan 2, 2010
A. Key() B. CompareMode C. Item () D. Exists () (Answer) E. Count Read More
What are the types of HTML?
Added on Sat, Jan 2, 2010
Static HTML Browser uses HTTP to request HTML file from the Web Server Dynamic HTML Browser uses HTTP to request an executable application rather than a Static HTML file Read More
What are the properties of Session Object?
Added on Sat, Jan 2, 2010
SessionID returns the session identification number for each user. Timeout sets the timeout period assigned to the Session object for any application, in minutes. CodePage determines the code page that will be used to display content. LCID a... Read More
What are the advantages of using ASP?
Added on Sat, Jan 2, 2010
Minimizes network traffic by limiting the need for the browser and server to talk to each other Makes for quicker loading time since HTML pages are only downloaded Allows to run programs in languages that are not supported by the browser Can... Read More
What are the methods in Application Object?
Added on Sat, Jan 2, 2010
Lock prevents clients from modifying the variables stored in the Application object. Unlock removes the lock from variables stored in the Application object. Read More
What are the methods by which output stream is controlled?
Added on Sat, Jan 2, 2010
Flush sends previous buffered output to the client immediately, but continues processing the script. Clear erases any already-buffered HTML. End causes the server to stop processing the script. Read More
What are the properties used to control the expiration of the page?
Added on Sat, Jan 2, 2010
Expires specifies the number of minutes before a page cached on a browser expires. ExpiresAbsolute sets the date and time at which a page cached on a browser expires. Read More
What are the collections of Session Object?
Added on Sat, Jan 2, 2010
Contents collection contains all the variables established for a session without using the tag. Static collection contains all the objects created Read More
What are Constants? How will you declare a constant?
Added on Sat, Jan 2, 2010
Constant is an object whose value cannot be changed. In ASP, constants are declared using the keyword Const Ex. Const PI = 3.1416 Read More
Where will you code OPTION EXPLICIT in an ASP application
Added on Sat, Jan 2, 2010
Option Explicit should be the very first line of an ASP program. It is given to make the declaration of variables explicit. This helps in many programming errors resulting out of typing mistakes of variable names. Read More
What is the difference between ASP and HTML? Or Why ASP is better than HTML?
Added on Sat, Jan 2, 2010
 ASP executes code on the server side whereas the browser interprets HTML. - ASP can use any scripting languages - Gets feedback from the user and return information to the user - Create pages that will be customized to display only things that... Read More
What do you need to run ASP?
Added on Sat, Jan 2, 2010
A browser and a Web server Read More
What are the tags necessary to be present within the <FORM > tag?
Added on Sat, Jan 2, 2010
-----tag: Provides input spaces (text boxes, combo boxes, radio button, etc.) on a form called fields. It has three attributes TYPE, NAME and VALUE. TYPE provides the characteristics of the field and the NAME specifies a name to the field by which it... Read More
What is HTML(Hypertext Markup Language)?
Added on Sat, Jan 2, 2010
It?s a method by which web pages can be built and generally used for formatting and linking text. Read More
What are the advantages of using ASP
Added on Sat, Jan 2, 2010
 Minimizes network traffic by limiting the need for the browser and server to talk to each other ? Makes for quicker loading time since HTML pages are only downloaded ? Allows to run programs in languages that are not supported by the browser ?... Read More
Explain the difference between POST and GET Method.
Added on Sat, Jan 2, 2010
GET requests are string data that is visible to the end user via the URL and a limit of 2kb, POST requests have no limit on total data and the user can?t see the data in a query string. Read More
What should the developer use in order to have an Active Server Page (ASP) invokes a stored procedure on a SQL Server database?
Added on Sat, Jan 2, 2010
A. ADO B. RDO C. RDS D. OLEDB E. None of the above. Read More
Why do we use Option Explicit
Added on Sat, Jan 2, 2010
To avoid multiple variables of the same name. Read More
How do you write an SQL insert statement?
Added on Sat, Jan 2, 2010
insert into tablename (fieldA, fieldB, fieldC)Values(?dataA?, ?dataB?, ?dataC?); Read More
What should be used in order to determine if the cookie "FavoriteFlavors" in the request object contains more than one entry?
Added on Sat, Jan 2, 2010
A. Request. Cookies("FavoriteFlavors").HasItems B. Request.Cookies("FavoriteFlavors").Collection.Count C. Request.Cookies("FavoriteFlavors").Dictionary D. Request.Cookies("FavoriteFlavors").HasKeys E. Request.Cookies("FavoriteFlavors").Count Read More
How can you have different number of cells for each row of a table in HTML?
Added on Sat, Jan 2, 2010
using colspan and rowspan Read More
What is a Dictionary object?
Added on Sat, Jan 2, 2010
It lets you store and retrieve information in a flexible data structure. Each value or information stored in a Dictionary is associated with a key through which the information can be retrieved. Read More
What is string concatenation function in VBScript?
Added on Sat, Jan 2, 2010
the ampersand symbol and ampersand space underscore across multiple lines Read More
How do you get the value of a combo box in Javascript?
Added on Sat, Jan 2, 2010
document.forms[?formName?].elements[?comboName?].options[i].value Read More
What is a session?
Added on Sat, Jan 2, 2010
A user accessing an application is known as a session. Read More
What is a class in CSS?
Added on Sat, Jan 2, 2010
A class allows you to define different style characteristics to the same HTML element. Read More
When inserting strings into a SQL table in ASP what is the risk and how can you prevent it?
Added on Sat, Jan 2, 2010
SQL Injection, to prevent you probably need to use Stored Procedures instead of inline/incode SQL Read More
Give the comment Tags for the following?
Added on Sat, Jan 2, 2010
VBScript : REM & ?(apostrophe) JavaScript : // (single line comment) /* */ (Multi-line comments) Read More
What is a VLAN? What does VLAN provide?
Added on Sat, Jan 2, 2010
VLAN ? Virtual Local Area Network Vlan is a logical grouping or segmenting a network connected to administratively defined ports on a switch, they provide Broadcast control, Security and Flexibility. Read More
How will you set the values for cookies?
Added on Sat, Jan 2, 2010
<% Response.Cookies("variable name ")="value" %>. Read More
What is the Order of precedence for LOGICAL Operators.
Added on Sat, Jan 2, 2010
NOT, AND, OR, XOR, EQV, IMP Read More
Naming constraints for a variable
Added on Sat, Jan 2, 2010
It can be up to 255 characters Must start with an alphabet Must not contain an embedded period or full-stop Read More
What are the Web Servers supporting ASP?
Added on Sat, Jan 2, 2010
? Internet Information Server (IIS) on Windows NT ? Personal Web Server (PWS) on Windows 95 ? Peer Web Services on Windows NT Read More
What is the maximum size of an array?
Added on Sat, Jan 2, 2010
Up to 60 dimensions. Read More
ClientCertificate is a collection of
Added on Sat, Jan 2, 2010
A. Server B. Response C. Request (Answer) D. ObjectContext Read More
Following is the code Server.MapPath (".") consider the path is C:InetpubWWWRootMATDefault.asp. What will be the output
Added on Sat, Jan 2, 2010
A. C:InetPUb B. C:InetPUbWWWroot C. C:InetPUbwwwrootMAT D. Error Read More
What would be the result of the above code?
Added on Sat, Jan 2, 2010
Question : <% intA = 3 sStrA = "Hello World" sStrB = "Hello World" + intA Response.Write sStrB %> What would be the result of the above code?             Answers: A. Type mismatch error... Read More
What is Subnetting? Why is it used?
Added on Sat, Jan 2, 2010
Used in IP Networks to break up larger networks into smaller subnetworks. It is used to reduce network traffic, Optimized network performance, and simplify management i.e. to identify and isolate network problems. Read More
What are the attributes of the tags? What are their functions?
Added on Sat, Jan 2, 2010
The two attributes are ACTION and METHOD The ACTION gives the name of the ASP file that should be opened next by which this file can access the information given in the form The METHOD determines which of the two ways (POST or GET) the browser can... Read More
Difference between the Communication and Transmission?
Added on Sat, Jan 2, 2010
Communication is the process of sending and receiving data by means of a data cable that is connected externally. Transmission means the transfer of data from the source to the destination. Read More
Which will NOT set the scope of an Active Server Component?
Added on Sat, Jan 2, 2010
A. Setting the [component name].scope property. (Answer) B. Using the Server.CreateObject method. C. Placing it in the Session or Application OnStart event handler. D. Instantiating the component in the global.asa file. E. Using the <OBJECT>... Read More
What is the program ID (ProgID) for ActiveX Data Objects in 2-tier and 3-tier database applications?
Added on Sat, Jan 2, 2010
A. ADO B. RDODB C. ADODB (Answer) D. RDS E. OLEDB Read More
In the database table, if the datatype for field1 (shown above) is Number, what is the value of varType?
Added on Sat, Jan 2, 2010
Question : <% varType = rsTest("field1").type %> In the database table, if the datatype for field1 (shown above) is Number, what is the value of varType?       Answers: A. The field value. B. A string description. ... Read More
Referring to the above, what is the value of iPos?
Added on Sat, Jan 2, 2010
Question : <% iPos = Instr("Hello World","r") %> Referring to the above, what is the value of iPos?                 Answers: A. 0 B. 1 C. 2 D. 8 E. 9 (Answer) Read More
The above code appears in the global.asa file. What would it accomplish?
Added on Sat, Jan 2, 2010
Question : <% Set Application("Thing") = Server.CreateObject("THINGDOER.thingy") %> The above code appears in the global.asa file. What would it accomplish?              Answers: A. It... Read More
which are the advance form techniques?
Added on Sat, Jan 2, 2010
 Intuitive and easy to use * Attractive and full-featured * Interactive where this is appropriate * Based (loosely) on a real-world scenario * Fulfill a predefined set of design requirements * Are fun, memorable, and provide user... Read More
How to include Active x controls in ASP code
Added on Fri, Jan 1, 2010
you can include Activex Control using OBJECT tag. Syntax for including Activex control is .. <OBJECT id="id1" clsid ="give class id here" codebase="path spec for activex ocx"></OBJECT> Read More
What is ServerVariables collection?
Added on Fri, Jan 1, 2010
The ServerVariables collection holds the entire HTTP headers and also additional items of information about the server. Read More
How long is a SessionID guaranteed to be unique?
Added on Fri, Jan 1, 2010
A. It is unique for the web server, whether it is restarted or not. B. Only until the web server is restarted. C. It is like a GUID in that it is for any web server at any time. D. Only until the session expires, then it can be reissued to another... Read More
What is Querystring collection?
Added on Fri, Jan 1, 2010
This collection stores any values that are provided in the URL. This can be generated by three methods: ? By clicking on an anchor tag <A> ? By sending a form to the server by the GET method ? Through user-typed HTTP address Read More
What is IIS?
Added on Fri, Jan 1, 2010
Internet Information Server (IIS) is a World Wide Web server, a Gopher server and an FTP server all rolled into one. IIS means that you can publish WWW pages and extend into the realm of ASP ( Active Server Pages) whereby JAVA or VBscript (server... Read More
In the sample code shown above, what will be written to the screen?
Added on Fri, Jan 1, 2010
Question : <SCRIPT LANGUAGE="VBScript" RUNAT=Server> a = 1 </SCRIPT> <SCRIPT LANGUAGE="VBScript"> a = 2 </SCRIPT> <% Response.Write a %> In the sample code shown above, what will be written... Read More
I want to generate a report using a date, i give in a text box, then the report is generated on a new page in asp, but if i want to generate it to Excel file, it will not take the date which I have given in the text box, Why ?
Added on Fri, Jan 1, 2010
May be some date-coversion error some where? Read More
Name some of the ASP components?
Added on Fri, Jan 1, 2010
? Ad Rotator component ? a way to manage advertisements on the web site. ? Content Linker component ? a technique to direct users through a set of pages on a web site by creating a list of URLs and description of the next and previous pages. ?... Read More
What is Session Object?
Added on Fri, Jan 1, 2010
It stores information about a User?s session. Gives a notification when a user session begins or ends. Read More
What is Response Object?
Added on Fri, Jan 1, 2010
It controls the information sent to the user. The various methods are: Response.Write ? Sends information directly to a browser Response.Redirect ? Directs a user to a URL other than the requested URL Response.ContentType ? Controls the type of... Read More
What are Scripting Objects?
Added on Fri, Jan 1, 2010
Objects that can enhance the application are known as the Scripting Objects. Read More
What is a Web Server?
Added on Sat, Jan 2, 2010
It?s a Computer that provides Web services on the Internet or on a local Intranet. It is designed to locate, address and send out simple HTML pages to all other users who access these pages. Read More
What is the order of execution for an ASP application
Added on Sat, Jan 2, 2010
1) Global.asa 2) Server-side Includes 3) Jscript scripts tagged within <SCRIPT> tags 4) HTML together with scripts tagged within <% ? %> delimiters 5) VBScripts tagged within <SCRIPT> tags Read More
Using VBScript, which of the following Scripting Object(s) is NOT available from scrrun.dll?
Added on Sat, Jan 2, 2010
A. TextStream B. Dictionary Object C. Err Object D. FileSystemObject E. All are available from scrrun.dll. (Answer) Read More
How can you resize arrays ?
Added on Sat, Jan 2, 2010
Arrays can be resized by using the keyword REDIM. Read More
What are the event handlers of Application Object?
Added on Sat, Jan 2, 2010
Application_OnStart- This event will be fired when the first visitor hits the page. Application_OnEnd- This event runs when the server is stopped. Read More
What variable can you use to share info across the whole application for one user?
Added on Sat, Jan 2, 2010
Use the sessions object Read More
What is code in asp for Redirect to another page
Added on Sat, Jan 2, 2010
Response.redrict is browser go to server then come back to user where as server. transfer is withing browser only Read More
IsClientConnected is a property of
Added on Sat, Jan 2, 2010
A. Server B. Response (Answer) C. Request D. Session Read More
What is Query string collection?
Added on Sat, Jan 2, 2010
This collection stores any values that are provided in the URL. This can be generated by three methods: By clicking on an anchor tag By sending a form to the server by the GET method Through user-typed HTTP address It allows you to extract data... Read More
What are 10Base2, 10Base5 and 10BaseT Ethernet LANs?
Added on Sat, Jan 2, 2010
10Base2 an Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband signaling, with a contiguous cable segment length of 200 meters (185mts). Known as Thinnet. 10Base5 an Ethernet term meaning a maximum... Read More
What are different properties provided by Object-oriented systems ? Can you explain different properties of Object Oriented Systems? Whats difference between Association , Aggregation and Inheritance relationships?
Added on Sat, Jan 2, 2010
Object Oriented Systems have following properties: provide support for complex data types support inheritance provides encapsulation of data provides extensibility of existing data types and classes Inheritance is the process of acquiring the... Read More





©2007, 1000projects.com, Only For Educational Purpose, Non Commercial use!