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 on 2010-11-26 15:35  公众号73只蚂蚁  阅读(691)  评论(0编辑  收藏  举报

导航