This example demonstrates how you can use the keyboard to control a RadioButtonList. You can focus a checkbox by using the
		Tab key if you set the TabIndex property of RadioButtonList according to the desired flow of the page.
	
	
		In addition, you can use a shortcut if you set the AccessKey property. Press
		Alt+AccessKey in IE and Chrome,
		Shift+Alt+AccessKey for Firefox
		and Shift+Esc+AccessKey for Opera.
		The radio button list in this example has an AccessKey property set to A. 
	
	
		To execute a selected radio button press the Enter or Space key when it is focused.
	
	
		Note: By default tab-access is disabled in Safari. To enable it, check "Preferences > Advanced > Press tab to highlight each item on the page".