Live Chat Icon For mobile
Live Chat Icon

How can I have the first item in the radiobuttonlist selected

Platform: ASP.NET| Category: RadioButton

VB.NET


RadioButtonList1.Items(0).Selected = true

C#


RadioButtonList1.Items[0].Selected = true;

Share with