You are on page 1of 2

ASP Classic

ASP is a technology for executing scripts on a web server.

Request.QueryString
Gets the user input from forms when the form method is GET.
Data is sent via URL and it is visible to everyone and has limits on the amount of information
to send.

Request.Form
Gets the user input from forms when the form method is POST.
Data is invisible to others and has no limits on the amount of information to send.

RadioButtons use Request.Form.

Session Variables
They are used to store information about one single user and are available to all pages in
one application.

Application Variables
They are used to store information about all users in one specific application.

Cookie
It is a small file that the server stores in the user computer in order to save and retrieve
specific values or specific information.
Considerations for Code Review

-Use checklists in order to validate frequent errors.


-Take into account principles or patterns that could make easier or appropriate the
implementation, for instance, SOLID principles.
-Validate coding standards and best practices.
-Check if the change supports maintainability.
-Check if the implementation accomplishes the requirement.
-Be kind when you communicate the result of the review. (Respectful, explain the way to fix
the issue, collaborate with the solution if possible).

You might also like