在一个页面里面,我放了一个 <fropDownList runat="server" ID="TreeId" AutoPostBack="true" OnSelectedIndexChanged="TreeId_SelectedIndexChanged"></fropDownList>
另外页面里面还有一个<f:ContentPanel ID="ContentPanel1" ShowBorder="false" BodyPadding="1px" ShowHeader="false" AutoScroll="true" runat="server" CssStyle="background:#F0F8FF;" EnableAjax="false">
<asp:Chart ID="Chart3" runat="server" Width="800px" >
<Titles>
<asp:Title Name="Title" Font="宋体, 16pt" Text="每日站点首页访问记录" ></asp:Title>
</Titles>
<Series>
<asp:Series Name="Series1" Legend="Legend1" ToolTip="#LEGENDTEXT: #VAL{C} million">
</asp:Series>
</Series>
<BorderSkin SkinStyle="Emboss"></BorderSkin>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" Area3DStyle-Enable3D="true" BorderColor="64, 64, 64, 64" BackSecondaryColor="Transparent" BackColor="64, 165, 191, 228" ShadowColor="Transparent" BackGradientStyle="TopBottom">
</asp:ChartArea>
</ChartAreas>
<Legends>
<aspegend Name="Legend1">
</aspegend>
</Legends>
</asp:Chart>
</f:ContentPanel>
其实就是对下拉菜单的选择更换chart里面的数据,然后在进行测试的时候,OnSelectedIndexChanged事件得到了响应,但是chart的数据却一直为改变,我在另一个没有引用fineui的常规aspx页面测试却可以。请问是为什么
|