Skip to content

SEO-178281-Coverage-Issues #403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: hotfix/hotfix-v24.1.41
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aspnetmvc/RadioButton/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ The whole purpose of Radio Button is to enable you to make one selection, only o

You can make only one selection from the group of radio buttons. All radio buttons in that group need to share the same name. This tells the form handler, the name of the group, and the value of the selected Radio Button.

Radio Button is [mutually exclusive](https://en.wikipedia.org/wiki/Mutually_exclusive_events); that is, when you select a radio button, any previously selected radio buttons in the same group become deselected. 
Radio Button is [mutually exclusive](https://en.wikipedia.org/wiki/Mutual_exclusivity); that is, when you select a radio button, any previously selected radio buttons in the same group become deselected. 

For example, when you want to choose between a groups of colors, you can create Radio Buttons for each color. You can give all the radio buttons the same name, for example, "preferred_color", but you must give each radio button a different value, for example, "red".

Expand Down