ASP Multiple choices


Total available count: 25
Subject - Web Development
Subsubject - ASP

Which ASP property is used to identify a user?


 

 

 

 



A


Solution:-

The ApplicationName is used to identify users specific to an application. That is, the same user name can exist in the database for multiple ASP applications that specify a different ApplicationName.

ASP Cookie is a small bit of text that is used to store user-specific information. This information can be read by the web application whenever a user visits the web site. When a user requests a web page, the webserver sends not just a web page, but also a cookie containing the date and time.

Each time the same computer requests a page with a browser, it will send the cookie too. With ASP, you can both create and retrieve cookie values.




Next 5 multiple choice(s)

1

Page 1 has this link:
<a href="page2.asp?color=green">Go</a>
How can page2.asp get the "color" parameter?

2

How do you get information from a form that is submitted using the "post" method?

3

How can you script your ASP code in JavaScript?

4

What is the default scripting language in ASP?

5

<%= is the same as:

Comments