• 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
Latest Answer: It carries the information in the fields to another ASP page ...
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
Latest Answer: namemethodactionname = to give name for the formmethod=get/postget- if limited data is to be passed to new page opened.post- if bulk data is to be passed to new page opened.action = the page to be opened when this form is submitted, to where the ...
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
Latest Answer: 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 ...
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
Latest Answer: 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 ...
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.
Latest Answer: 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. ...
The main difference is that the Querystring collection gets appended to a URL(with a ?
Latest Answer: Query String Collection:This is used when the form method is post. the value of querystring is passed by appending variable by Name/value pair in the url file.when the page display one can see the variable in name/value pair on the address bar.Form Collection ...
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
Latest Answer: Cookies are the text file which contain the info send by the server and stored on the client machine. These are useful for the identification of the user who visit the websites as well as it gives the information of the websites the use visit before.these ...
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
Latest Answer: 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. ...
The ServerVariables collection holds the entire HTTP headers and also additional items of information about the server.
Latest Answer: The Server Variables collection holds the entire HTTP headers and also additional items of information about the server. ...
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.
Latest Answer: 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. ...
View page << Previous 10 11 12 13 [14] 15 Next >>

Go Top