Hi Guru
I have webusercontrol that contain collapsesiblePanelExtender contro when i run mainpage girdview in panel2 show only 3 fileld (total 7 field).
help me please
thank you very much
Joob.
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="WUCEmployer.ascx.cs" Inherits="WUCEmployer" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Panel ID="Panel1" runat="server" Height="160px" Width="815px">
<div><asp:Label ID="Label1" runat="server" Text="Employer Name:" Width="105px"></asp:Label><asp:TextBox ID="txtEmpName" runat="server" BorderStyle="None" Width="425px"></asp:TextBox></div>
<div>
<asp:Label ID="Label2" runat="server" Text="Address" Width="105px"></asp:Label><asp:TextBox ID="txtAddress" runat="server" BorderStyle="None" Width="425px"></asp:TextBox></div>
<div>
</asp:Panel>
<asp:Panel ID="Panel2" runat="server" >
<cc1:CollapsiblePanelExtender ID="CollapsiblePanelExtender1" runat="server"
TargetControlID="Panel2"
CollapsedSize="0"
ExpandedSize="500"
Collapsed="True"
ExpandControlID="LinkButton1"
CollapseControlID="LinkButton1"
TextLabelID="lblCollap"
CollapsedText="Show Details..."
ExpandedText="Hide Details"
ImageControlID="Image1"
ExpandedImage="images/FillUpHS.png"
CollapsedImage="images/FillDownHS.png"
ExpandDirection="Vertical" />
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
CellPadding="4" DataSourceID="SqlDataSource2" ForeColor="#333333" GridLines="None">
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<Columns>
<asp:CommandField ShowSelectButton="True" />
</Columns>
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#999999" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>