0

我试过

Dim theme = rblTheme.Items(rblTheme.SelectedIndex).Value

选择第一个值

Dim theme = rblTheme.SelectedItem.Value

选择第一个值

Dim theme = ""
        For i As Integer = 0 To rblTheme.Items.Count - 1

            If (rblTheme.Items(i).Selected) Then
                theme = rblTheme.Items(i).Value
            End If
        Next

选择两个值。

需要帮忙 !!

4

1 回答 1

0
 Dim selectedItemVal as string
 selectedItemVal=rblTheme.SelectedValue;

我猜您正在重新加载页面回发中的 RadioButton 列表(当您单击某个按钮时)。因此,如果 isPostBack 属性为 false,您可能应该移动该代码

 protected void Page_Load(object sender, EventArgs e)
 {
     if(!IsPostBack)
     {
        //Your code to load the Radio button list control
     }
 }

现在您应该能够获得按钮单击事件的值。

于 2012-04-07T20:37:44.290 回答