3

我知道这是一个非常基本的问题,但我找不到如何在 VB 中执行此操作......我有一个 CheckBoxList,其中一个选项包括一个用于填写您自己的值的文本框。因此,当检查其复选框时 这是后面的代码,我不确定在我的 If 语句中放入什么来测试是否检查了某个 ListItem。

Protected Sub CheckBoxList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBoxList1.SelectedIndexChanged
    If ___ Then
        txtelect.Enabled = True
    Else
        txtelect.Enabled = False
    End If
End Sub
4

4 回答 4

9

您可以遍历 CheckBoxList 中的复选框,检查每个复选框以查看它是否被选中。尝试这样的事情:

For Each li As ListItem In CheckBoxList1.Items
    If li.Value = "ValueOfInterest" Then
        'Ok, this is the CheckBox we care about to determine if the TextBox should be enabled... is the CheckBox checked?
        If li.Selected Then
            'Yes, it is! Enable TextBox
            MyTextBox.Enabled = True
        Else
            'It is not checked, disable TextBox
            MyTextBox.Enabled = False
        End If
    End If
Next

上面的代码将被放置在 CheckBoxList 的SelectedIndexChanged事件处理程序中。

于 2011-01-07T20:05:35.567 回答
0

假设您的 aspx 看起来与此类似:

    <asp:TextBox ID="txtelect" runat="server"></asp:TextBox>
    <asp:CheckBoxList id="CheckBoxList1" runat="server" autopostback="true" >
        <asp:ListItem  Text="enable TextBox" Value="0" Selected="True"></asp:ListItem>
        <asp:ListItem  Text="1" Value="1" ></asp:ListItem>
        <asp:ListItem  Text="2" Value="2" ></asp:ListItem>
        <asp:ListItem  Text="3" Value="3" ></asp:ListItem>
    </asp:CheckBoxList>

您可以使用 ListItem's-Selected属性来检查是否应启用您的文本框:

  Private Sub CheckBoxList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBoxList1.SelectedIndexChanged
        'use the index of the ListItem where the user can enable the TextBox(starts with 0)'
         txtelect.Enabled = CheckBoxList1.Items( 0 ).Selected
  End Sub
于 2011-01-07T20:00:22.597 回答
0

我不会这样做,它非常低效。您访问服务器只是为了启用或禁用文本框,您应该使用 javascript。下面的代码会更好

 <asp:DataList ID="mylist" runat="server">
        <ItemTemplate>
            <input type="checkbox" id="chk<%#Container.ItemIndex %>" onclick="document.getElementById('txt<%#Container.ItemIndex %>').disabled=(!this.checked);" />
            <input type="text" id="txt<%#Container.ItemIndex %>" disabled="disabled" />
        </ItemTemplate>
    </asp:DataList>
于 2011-01-07T21:22:04.267 回答
0

将它们放在字符串中的功能

Function ValueSelected(cbl As CheckBoxList, separator As String) As String
    Dim s As String = ""
    Dim cb As ListItem
    For Each cb In cbl.Items
        If cb.Selected Then
            s += cb.Text & separator
        end If
    Next
    s = s.Substring(0, s.Length - 1)
    Return s
End Function
于 2018-05-06T07:55:03.557 回答