0

ユーザーがVB.NetコードビハインドファイルからASP.NetDetailsViewで「追加」モードに入るときに、変数から取得されるデフォルト値をDropDownListに入力します。移入する方法を教えていただけますか?

入力したいDropDownListのマークアップは次のとおりです。

<asp:TemplateField HeaderText="Class:" SortExpression="ClassID">
    <EditItemTemplate>
        <asp:DropDownList 
            ID="DropDownListClass" 
            Runat="server"
            DataSourceID="SqlDataSourceClasses"
            DataTextField = "ClassName"
            DataValueField="ID"
            SelectedValue='<%# Bind("ClassID") %>'
            ForeColor="Blue">
        </asp:DropDownList>

        <asp:RequiredFieldValidator ID="RequiredFieldValidatorEditClass" runat="server" ControlToValidate="DropDownListClass" 
            ErrorMessage="Please select a Class here." Font-Bold="True" Font-Italic="True" ForeColor="Red" 
            SetFocusOnError="True" Display="Dynamic">

        </asp:RequiredFieldValidator>

    </EditItemTemplate>

    <InsertItemTemplate>

        <asp:DropDownList 
            ID="DropDownListClass" 
            Runat="server"
            DataSourceID="SqlDataSourceClasses"
            DataTextField = "ClassName"
            DataValueField="ID"
            SelectedValue='<%# Bind("ClassID") %>'
            ForeColor="Blue">
        </asp:DropDownList>

        <asp:RequiredFieldValidator ID="RequiredFieldValidatorInsertClass" runat="server" ControlToValidate="DropDownListClass" 
            ErrorMessage="Please select a Class here." Font-Bold="True" Font-Italic="True" ForeColor="Red" 
            SetFocusOnError="True" Display="Dynamic">

        </asp:RequiredFieldValidator>
    </InsertItemTemplate>

    <ItemTemplate>
        <asp:DropDownList 
            ID="DropDownListClass" 
            Runat="server"
            DataSourceID="SqlDataSourceClasses"
            DataTextField = "ClassName"
            DataValueField="ID"
            SelectedValue='<%# Bind("ClassID") %>'
            Enabled="false"
            ForeColor="Blue"
            Font-Bold="true"> 
        </asp:DropDownList>
    </ItemTemplate>
</asp:TemplateField>

コードビハインドファイルでこれを使用して、デフォルト値を含む変数を設定します。

Function GetValueFromDropDownListClassItem() As String

    Dim strValueToReturn As String
    Dim drpValue As DropDownList

    drpValue = DetailsView.FindControl("DropDownListClass")

    If String.IsNullOrEmpty(drpValue.Text) Then
        strValueToReturn = ""
    Else
        strValueToReturn = drpValue.SelectedItem.Text
    End If

    Return strValueToReturn
End Function

この値を使用し、この変数の値を使用してDropDownListを事前に選択します。

4

1 に答える 1

2

編集:

こういう意味ですか?

Protected Sub dropdown_DataBound(sender As Object, e As EventArgs)
    Dim list As DropDownList = TryCast(sender, DropDownList)
    Dim value as String = GetValueFromDropDownListClassItem()
    If list IsNot Nothing And value IsNot "" Then
        list.SelectedValue = value
    End If
End Sub

古いメッセージ:次のことを試してください:

<asp:DropDownList 
    ID="DropDownListClass" 
    Runat="server"
    DataSourceID="SqlDataSourceClasses"
    DataTextField = "ClassName"
    DataValueField="ID"
    SelectedValue='<%# Bind("ClassID") %>'
    AppendDataBoundItems="True"
    ForeColor="Blue">
        <asp:ListItem Selected="True" Value="0">Please select</asp:ListItem>
</asp:DropDownList>

AppendDataBoundItemstrueおよびlistItemに注意してください

于 2013-01-04T15:14:01.773 に答える