Which ASP property is used to identify a user?
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.
Page 1 has this link:
<a href="page2.asp?color=green">Go</a>
How can page2.asp get the "color" parameter?
How do you get information from a form that is submitted using the "post" method?
How can you script your ASP code in JavaScript?
What is the default scripting language in ASP?
<%= is the same as: