Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Are the Values Submitted on Radio Button Fields
What Are the Values Submitted on Radio Button Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields
✍: FYIcenter.com
A "radio" button input field does not allow viewers to enter any input values directly. If a form is submitted, "radio" button input fields will be submitted with values based on the following rules:
Note that if one radio button is pushed, all other radio buttons in the same group will be un-pushed. If you use the previous tutorial example, you can test the following cases:
1. If you push the first radio button and click the submit button, you will get the following value submitted:
http://localhost/submit?channel=google
2. If you push the third radio button and click the submit button, you will get the following values submitted:
http://localhost/submit?channel=friend
2007-05-12, 5122👍, 0💬
Popular Posts:
Can Multiple Cursors Being Opened at the Same Time? - Oracle DBA FAQ - Working with Cursors in PL/SQ...
How To Control White Spaces between Table Cells? - XHTML 1.0 Tutorials - Understanding Tables and Ta...
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can p...
How do I use forms? The basic syntax for a form is: <FORM ACTION="[URL]">...&l t;/FORM>Wh...
what are the advantages of hosting WCF Services in IIS as compared to self hosting? There are two ma...