2011-04-20 3 views
0

두 개의 asp : updatepanel 및 2 asp : updateprogress를 사용하고 있습니다. AssociatedUpdatePanelID를 절대로 사용하지 않으면 업데이트 진행률이 올바르게 표시되지만 AssociatedUpdatePanelID를 사용하면 진행률 막대에 절대로 표시되지 않습니다.2 asp : updatepanel 및 2 asp : updateprogress 컨트롤

<asp:UpdateProgress AssociatedUpdatePanelID="upMainPracticeCountry" runat="server" ID="UpdateProgress1"> 
        <ProgressTemplate> 
         <img src="images/loading.gif" alt="loading..." /></ProgressTemplate> 
       </asp:UpdateProgress> 
       <asp:UpdatePanel ID="upMainPracticeCountry" runat="server"> 
        <Triggers> 
         <asp:AsyncPostBackTrigger ControlID="ddlMainPracticeCountry" EventName="SelectedIndexChanged" /> 
        </Triggers> 
        <ContentTemplate> 
         <asp:DropDownList ID="ddlMainPracticeState" runat="server"> 
         </asp:DropDownList> 
        </ContentTemplate> 
       </asp:UpdatePanel> 

다른 업데이트 패널에서 일어나고 않지만 업데이트 패널의 드롭 다운 목록에 대한 AutoPostBack은이 = "true"로 설정을 시도 할 수 있는지 정확히 확인

<asp:UpdateProgress runat="server" ID="up2" AssociatedUpdatePanelID="upPostalCountry"> 
       <ProgressTemplate> 
        <img src="images/loading.gif" alt="loading..." /></ProgressTemplate> 
      </asp:UpdateProgress> 
      <asp:UpdatePanel ID="upPostalCountry" runat="server" UpdateMode="Conditional"> 
       <Triggers> 
        <asp:AsyncPostBackTrigger ControlID="ddlPostalCountry" EventName="SelectedIndexChanged" /> 
       </Triggers> 
       <ContentTemplate> 
        <asp:DropDownList ID="ddlPostalState" runat="server"> 
        </asp:DropDownList> 
       </ContentTemplate> 
      </asp:UpdatePanel> 

답변

0

되지 않는 이유는 무엇입니까?

관련 문제