-4
C#의 코드에서 라디오 버튼을 선택해야합니다. 아래 코드를 시도했지만 작동하지 않았습니다.C#으로 라디오 버튼을 선택해야합니까?
RadioButtonList active =(RadioButtonList)editItem.FindControl("radbtnProfileName");
if(valueres.Select(i => i.profile).FirstOrDefault()) //this is the value(column) I am getting from the SP
{
active.SelectedValue = "Yes";
}
else
{
active.SelectedValue = "No";
}
'active.Checked = true'입니까? – Pikoh
당신은'active.Selected = true;를 시도해 보셨습니까? –
나는 active.Checked = true를 시도했지만 active.Selected = true; 하지만 RadioButtonList에는 'System.Web.UI.WebControls.RadioButtonList'유형의 첫 번째 인수를 수락하는 'checked'라는 확인 메서드에 대한 정의가없고 확장 메서드가 없습니다. –