動的ラジオ ボタン リストを作成しています
Dim rdbQuestion As New RadioButtonList
そしてそこに動的IDがあります
rdbQuestion.ID = "Question_" & row("Id").ToString
そして、ページがレンダリングされたラジオ ボタン リストの ID が次のように変更されると、
AssessmentPerforma_Question_1, AssessmentPerforma_Question_2, AssessmentPerforma_Question_3..... AssessmentPerforma_Question_n
このような操作を実行するためにasp.netがIDを変更するのを止めるにはどうすればよいですか
Sub btnSave_click(ByVal sender As Object, ByVal e As EventArgs)
Dim rbl As RadioButtonList = DirectCast(Page.FindControl("Question_1"), RadioButtonList)
Response.Write(rbl.SelectedValue)
End Sub