how to clear a radiobutton list after successful data insertion?
asp.net, visual-studio
Solution
You could - either set myrbList.SelectedIndex = -1, - or foreach through its .Items and set each item.Selected = false
Problem
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