| 1. |
What are the three most frequently used form of attribute |
|
Answer» Answer: 1 ACTIONBackend script ready to PROCESS your passed data. 2 METHODMETHOD to be used to UPLOAD data. The most frequently used are GET and POST methods. 3 TARGETSpecify the target window or frame where the result of the script will be displayed. It TAKES VALUES like _blank, _self, _parent etc. 4 ENCTYPE You can use the enctype attribute to specify how the browser encodes the data before it sends it to the server. Possible values are −application/x-www-form-urlencoded − This is the standard method most forms use in simple scenarios.mutlipart/form-data − This is used when you WANT to upload binary data in the form of files like image, word file etc. |
|