2010年11月26日

ClientState的作用

某页面aspx上用到


 <ajaxToolkit:CollapsiblePanelExtender ID="CollapsiblePanelExtenderSearch" runat="server"

                                Enabled="True" TargetControlID="PriceExtPanel" CollapseControlID="btnCheck" ExpandControlID="btnCheck"

                                Collapsed="true" >

                            </ajaxToolkit:CollapsiblePanelExtender>

 


在此页面的.cs里有使用


 this.CollapsiblePanelExtenderSearch.Collapsed = true;

但,未如期收缩



通过javascript在页面点击btnCheck,亦无效。


后google到,

需要再加上这句:

            this.CollapsiblePanelExtenderSearch.ClientState = "true";

 


好了,解决问题。


posted @ 2010-11-26 15:35 Free Programmer 阅读(197) 评论(0) 编辑