ユーザーが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を事前に選択します。