0

ここで何が起こっているのかわかりません。しかし、私のページには、StateドロップダウンselecteditemイベントのCityドロップダウンにデータを入力する更新パネルがありました。それは機能していましたが、何らかの理由で現在は機能していません。イベントのコードの最初の行として配置したメッセージボックスもポップアップ表示されません。

これがマークアップです。

<!-- State dropdown selector area -->
        <asp:DropDownList ID="ddlState"  runat="server"
                          AppendDataBoundItems="True" CssClass="dropdowns"
                          BorderColor="Black"
                          BorderStyle="Solid" BorderWidth="2px" TabIndex="7" 
                          DataSourceID="EntityDataSource1" DataTextField="Name"
                          DataValueField="Id" ToolTip="Select a state here" AutoPostBack="True">
            <asp:ListItem Value="" Text="Select a state"/>
        </asp:DropDownList>
        <asp:EntityDataSource ID="EntityDataSource1" runat="server" ConnectionString="name=enerteckEntities"
             DefaultContainerName="enerteckEntities" EnableFlattening="False" EntitySetName="states"
             Select="it.[Name], it.[Id]">
        </asp:EntityDataSource>
        <asp:RequiredFieldValidator ID="rfvState" runat="server" 
                                    ErrorMessage="Please select a state from the dropdown list"
                                    Display="Dynamic" ControlToValidate="ddlState" 
                                    ForeColor="#FF3300">
        </asp:RequiredFieldValidator>
        <!-- End of State dropdown selector area -->
    <br /><br />
    <asp:UpdatePanel ID="updtPanelCity" runat="server">
        <ContentTemplate>
            <asp:DropDownList ID="ddlCity"  runat="server"
                              AppendDataBoundItems="True" CssClass="dropdowns"
                              BorderColor="Black"
                              BorderStyle="Solid" BorderWidth="2px" TabIndex="8" 
                               ToolTip="Select a city here" AutoPostBack="True">
                <asp:ListItem Value="" Text="Select a city"/>
            </asp:DropDownList>
            <asp:RequiredFieldValidator ID="rfvCity" runat="server" 
                                        ErrorMessage="Please select a city from the dropdown list"
                                        Display="Dynamic" ControlToValidate="ddlCity" 
                                        ForeColor="#FF3300">
            </asp:RequiredFieldValidator>
        </ContentTemplate>
        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="ddlState" EventName="SelectedIndexChanged" />
        </Triggers>
    </asp:UpdatePanel>

これが背後にあるコードです。

Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load

End Sub

Protected Sub ddlState_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ddlState.SelectedIndexChanged
    MsgBox("are you actually working")
    If IsPostBack Then
        ddlCity.Items.Clear()
        Dim context As New enerteckEntities()

        'Dim query = context.DistinctCityFromZiptax(Convert.ToInt16(ddlState.SelectedValue))
        Dim query = From c In context.ziptaxes Where c.StateID = ddlState.SelectedValue Order By c.City Select c.City, c.ZipTaxId
        ddlCity.DataSource = query.Distinct().ToList()
        ddlCity.DataValueField = "ziptaxid"
        ddlCity.DataTextField = "City"
        ddlCity.DataBind()
    End If

End Sub

私はこの問題に別の目を向ける必要があります。

編集:これがscriptmanagerの内容です

 <asp:ScriptManager ID="ScriptManager1" runat="server">
    <Scripts>
        <%--Framework scripts--%>
        <asp:ScriptReference Name="MsAjaxBundle" />
        <asp:ScriptReference Name="jquery" />
        <asp:ScriptReference Name="jquery.ui.combined" />
        <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
        <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
        <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
        <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
        <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
        <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
        <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
        <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
        <asp:ScriptReference Name="WebFormsBundle" />
        <%--Site scripts--%>

    </Scripts>
</asp:ScriptManager>
4

1 に答える 1

0

UpdateMode1UpdatePanelにプロパティを追加できます。そして条件付きに設定

<asp:UpdatePanel ID="updtPanelCity"
                                 UpdateMode="Conditional"
                                 runat="server">

....

2そしてddlを更新パネルに配置します

   <ContentTemplate>
      ....
     <asp:DropDownList ID="ddlState"  runat="server"
                          AppendDataBoundItems="True" CssClass="dropdowns"
                          BorderColor="Black"
                          BorderStyle="Solid" BorderWidth="2px" TabIndex="7" 
                          DataSourceID="EntityDataSource1" DataTextField="Name"
                          DataValueField="Id" ToolTip="Select a state here" AutoPostBack="True">
            <asp:ListItem Value="" Text="Select a state"/>
        </asp:DropDownList>
 </ContentTemplate>

3そしてOnSelectedIndexChanged=""dllStateを追加します

于 2012-09-11T18:03:31.467 に答える