Can anybody please help me to resolve this simple issue..How to clear the selection of a radiobuttonlist after a form submission. i need to use it in my asp.net web application. when a user clicks on the clear button i need to clear the selection of radiobutton list.Thanks in advance
Can anybody please help me to resolve this simple issue..How to clear the selection
Share
You could
– either set myrbList.SelectedIndex = -1,
– or foreach through its .Items and set each item.Selected = false