-
How many Max Cookies can we create in Server?
A. 10 B. 20 C. 30 D. 40
-
-
What are the advantages of using ASP?
• 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 provide the client with data that does not reside on the client’s machine • Provides improved security measures since the script cannot be viewed by the...
-
What are the collections of Application Object?
* 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.
-
What are the properties used to control the expiration of the page?
• 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.
-
Naming constraints for a variable.
It can be up to 255 characters Must start with an alphabet Must not contain an embedded period or full-stop
-
What are the browsers that can access ASP pages?
• Internet Explorer (supports VBScript, JavaScript) • Netscape Communicator/ Navigator (supports only JavaScript, VBScript can be also added too)
-
Give the comment Tags for the following:
VBScript : REM & ‘(apostrophe) JavaScript : // (single line comment) /* */ (Multi-line comments)
-
How does the server identify and execute the server-side scripts within HTML code?
• Including the RUNAT=SERVER attribute in the < SCRIPT > tag • Use < % … % > server script delimiter
-
How are scripts executed?
ASP provides scripting engines that execute the corresponding scripting languages on the server side. Scripts should be encoded within the <%…. %> Delimiters.
-
What is HTML(Hypertext Markup Language)?
It’s a method by which web pages can be built and generally used for formatting and linking text.
-
How can you change the primary scripting language for a page?
Specify <%@ LANGUAGE = Scripting language %>
-
How can you disable the browser to view the code?
Writing codes within the <! -- //-- > Tag.
-
What is an .ASP file?
It is a Text File that contains the combination of the following: • Text • HTML tags • Script Commands
-
What are Scripting Objects?
Objects that can enhance the application are known as the Scripting Objects.
-
What are the ASP Scripting Objects?
The Dictionary object, the FileSystemObject object, TextStream object.
-
What is a variable?
Variable is a memory location through which the actual values are stored/retrieved. Its value can be changed.
-
Sending SMS via ASP.NET
how do i send sms's via the program I created using asp.net,or if somebody knows what tolls do i need to create a web application that sends sms's
-
IsClientConnected is a property of
A. Server B. Response C. Request D. Session
-
ASP Interview Questions
Ans