日期:2014-05-18  浏览次数:20371 次

UpdatePanel1 怎么还会刷新
UpdatePanel1 怎么还会刷新
这怎么回事。。。
 <asp:UpdatePanel ID="UpdatePanel1" runat="server">
  <ContentTemplate>
   
  <asp:DataList ID="DataList1" runat="server" OnDeleteCommand="DataList1_DeleteCommand" OnItemCreated="DataList1_ItemCreated" Width="100%">
  <ItemTemplate>
  <br /> 站点名称:<%#Eval("zdName") %> <br />
  <a href="Default2.aspx?id=<%#Eval("Id") %>">查看统计报表</a> | <a href="getCountVisitots2.aspx?zdId=<%#Eval("Id") %>">获取统计代码</a> | 参数设置 | 我要啦排名 | 站点初始化 | <asp:LinkButton ID="lbDelete" runat="server" CommandName="Delete" CommandArgument='<%#Eval("Id") %>'>删除站点 </asp:LinkButton><br />
  &nbsp; &nbsp; &nbsp; &nbsp; 今日 <%#Eval("todayCount")%>IP /<%#Eval("todayCountPv")%>PV &nbsp; &nbsp; &nbsp; &nbsp; 昨日 <%#Eval("yesterdayCount")%>IP &nbsp; &nbsp; &nbsp; &nbsp;一周 <%#Eval("hebdomadCount")%>IP /<%#Eval("hebdomadCountPV") %>PV<br />
  </ItemTemplate>
  </asp:DataList>
  </ContentTemplate>
  </asp:UpdatePanel>

------解决方案--------------------
你還沒設置Trigger呢。
------解决方案--------------------
C# code
============页面上
<asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="Conditional">
                            <ContentTemplate>
                                <asp:Label ID="lblMsg" runat="server" ForeColor="Red" Font-Bold="True"></asp:Label>
                            </ContentTemplate>
                            <Triggers>
                                <asp:AsyncPostBackTrigger ControlID="触发刷新的按钮id或其他" />
                            </Triggers>
                        </asp:UpdatePanel>