Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How To Use "reset" Input/Action Fields
How To Use "reset" Input/Action Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields
✍: FYIcenter.com
A "reset" input field is defined as <input type="reset" .../>. "reset" input fields can be used to create reset buttons in a form. When a reset button is clicked, the form will be refreshed by replacing user entered values with default values. Only one other attribute that is useful to this "reset" input type:
Here is a tutorial example with two reset button input fields:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Reset Button Input Fields</title> </head> <body> <h4>Online Survey</h4> <form action="http://localhost/submit"> <p style="background-color: #eeeeee; padding: 8px;"> Your name: <input type="text" name="name" value="Joe Miller"/><br/> How did you find FYIcenter:<br/> <input type="radio" name="channel" value="google" checked="checked"/>Google search<br/> <input type="radio" name="channel" value="yahoo"/>Yahoo search<br/> <input type="radio" name="channel" value="friend"/>Your friend<br/> <input type="reset"/> <input type="reset" value="Refresh"/> </p> </form> </body> </html>
If you save the above document as reset_button.html, and view it with
Internet Explorer, you will see a form with 2 reset buttons as shown below:
2007-05-12, 4889👍, 0💬
Popular Posts:
What print out will the folloging code produce? main() { char *p1=“name”; char *p2; p2=(char*)malloc...
Can you explain different software development life cycles -part II? Water Fall Model This is the ol...
How can I implement a thread-safe JSP page? You can make your JSPs thread-safe by having them implem...
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...
How is normally a project management plan document organized ? PMP document forms the bible of a pro...