HTML form action Attribute
HTML <form> tag
Definition and Usage
The action attribute specifies the URL (web resource) to be loaded when the
submit button is activated.
The form information is sent to the page specified in the action attribute.
Syntax
Syntax Example
<form action="demo_form_action.asp">
|
Attribute Values
Value |
Description |
URL |
The web resource/address to go to when submit button is
used. Possible URL values:
- A relative URL - A page within the site (on the same server), like
action="example.html"
- An absolute URL - A page outside of the site (on another server), like
action="www.example.com"
|
Browser Support

The attribute is supported in all major browsers.
Example
<form action="demo_form_action.asp">
First name:
<input type="text" name="FirstName" value="Peter" />
<br />
Last name:
<input type="text" name="LastName" value="Griffin" />
<br />
<input type="submit" value="Submit" />
</form>
|
Try-It-Yourself Demos
form action
attribute example
Specify the url to send the form data to.
HTML <form> tag
Learn how your website performs under various load conditions
 |
|
WAPT
is a load, stress and performance testing tool for websites and web-based applications.
In contrast to "800-pound gorilla" load testing tools, it is designed to minimize the learning
curve and give you an ability to create a heavy load from a regular workstation.
WAPT is able to generate up to 3000 simultaneously acting virtual users using standard hardware configuration.
Virtual users in each profile are fully customizable. Basic and NTLM authentication methods are supported.
Graphs and reports are shown in real-time at different levels of detail, thus helping to manage the testing process.
Download the free 30-day trial!
|
|