Avatar of jagguy
jagguy
Flag for Australia asked on

radiobutton

in asp.net this is not deciding which radiobutton item is clicked

 If RadioButtonList1.Items(0).Enabled = True Then
            TextBox1.Text = "hello"
        ElseIf RadioButtonList1.Items(1).Enabled = True Then
            TextBox1.Text = "hello2"
        End If
ASP.NET

Avatar of undefined
Last Comment
Paul Jackson

8/22/2022 - Mon
Paul Jackson

try

 If RadioButtonList1.Items(0).Checked= True Then
            TextBox1.Text = "hello"
        ElseIf RadioButtonList1.Items(1).Checked = True Then
            TextBox1.Text = "hello2"
        End If
jagguy

ASKER
this gives me an error as there is no checked property?

 If RadioButtonList1.Items(0).Checked= True Then
            TextBox1.Text = "hello"
        ElseIf RadioButtonList1.Items(1).Checked = True Then
            TextBox1.Text = "hello2"
        End If
ASKER CERTIFIED SOLUTION
Paul Jackson

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes