Good morning, I'm trying to get my RadGrid1 on the backend, because of the error mentioned in the title, I do not know what else to do, can anyone help me?
Aspx code:
<asp:Content ID="Content2" ContentPlaceHolderID="bodyMenu" runat="server">
<div runat="server" id="pnlGeral">
<div>
<table width="100%">
<tr>
<td style="text-align: left;">
<h3>Folha de Pagamento</h3>
</td>
<td style="text-align: right;">
<asp:Label ID="lblDataAtualizacao" runat="server" Text="Informações atualizadas até ..."></asp:Label>
</td>
</tr>
</table>
</div>
<div id="informacoes" class="alert-info" style="width: 678px; display: inline-block;" runat="server">
<div class="text-left">
<strong><span id="dadosUsuario">Dados do usuário:</span></strong>
<h3>
<span id="nomeAcesso"><%:Session["NomeUsuario"].ToString()%></span>
</h3>
<p>
<strong>CPF:
</strong>
<span id="cpfAcesso"><%:Session["CpfUsuario"].ToString()%></span>
</p>
<p>
<strong>E-Mail:
</strong>
<span id="emailAcesso"><%:Session["EmailUsuario"].ToString()%></span>
</p>
<div runat="server" id="PrimaryBtnWrapper" class="btn-wrapper">
<asp:Button runat="server" ID="btnLogoff" Text="Não sou eu!" CssClass="submit" OnClick="btnPrimary_Click" />
</div>
</div>
</div>
<div>
<table>
<tr>
<td>
<label>Exercício</label>
</td>
<td>
<label>Data Inicial</label>
</td>
<td>
<label>Data Final</label></td>
</tr>
<tr>
<td>
<telerik:RadNumericTextBox runat="server" MaxLength="4" ID="txtExercicio" BackColor="#FAFADA" Skin="Vista" Width="70px" AutoPostBack="true">
<NumberFormat ZeroPattern="n" DecimalDigits="0" GroupSizes="5" NegativePattern="n"></NumberFormat>
</telerik:RadNumericTextBox>
</td>
<td>
<telerik:RadDatePicker ID="txtDataInicial" AutoPostBack="True" runat="server" Skin="Vista" OnSelectedDateChanged="txtDataInicial_SelectedDateChanged" Calendar-CultureInfo="pt-BR" Culture="pt-BR">
<DateInput ID="txtDataInicialImput" runat="server"></DateInput>
<DatePopupButton ToolTip="Clique aqui para abrir o calendário."></DatePopupButton>
</telerik:RadDatePicker>
</td>
<td>
<telerik:RadDatePicker ID="txtDataFinal" AutoPostBack="True" OnSelectedDateChanged="txtDataFinal_SelectedDateChanged" runat="server" Skin="Vista" Calendar-CultureInfo="pt-BR" Culture="pt-BR">
<DateInput ID="txtDataFinalImput" runat="server"></DateInput>
<DatePopupButton ToolTip="Clique aqui para abrir o calendário."></DatePopupButton>
</telerik:RadDatePicker>
</td>
</tr>
</table>
</div>
<div>
<table>
<tr>
<td>Obs.: Os filtros Data Inicial e Final devem estar dentro do Exercicio informado. Ex. Exercício 2015 - Data Inicial - 01/01/2015 Data Final - 30/06/2015.
</td>
</tr>
</table>
</div>
<div>
<table>
<tr>
<td>
<asp:RadioButton ID="rbtTodos" BackColor="Transparent" Text="Todos" GroupName="Data"
Checked="true" runat="server" />
</td>
<td>
<asp:RadioButton ID="rbtAdimitidos" BackColor="Transparent" Text="Admitidos" GroupName="Data"
runat="server" />
</td>
<td>
<asp:RadioButton ID="rbtDemitidos" BackColor="Transparent" Text="Demitidos" GroupName="Data"
runat="server" />
</td>
</tr>
</table>
</div>
<div>
<table>
<tr>
<td>
<label>Nome</label>
</td>
</tr>
<tr>
<td>
<telerik:RadTextBox ID="txtFuncionario" runat="server" Skin="Vista" Width="650px">
</telerik:RadTextBox>
</td>
</tr>
<tr>
<td>
<label>CPF</label>
</td>
</tr>
<tr>
<td>
<telerik:RadTextBox ID="txtCPF" runat="server" Skin="Vista" Width="650px">
</telerik:RadTextBox>
</td>
</tr>
<tr>
<td>
<label>Cargo</label>
</td>
</tr>
<tr>
<td>
<telerik:RadTextBox ID="txtCargo" runat="server" Skin="Vista" Width="650px">
</telerik:RadTextBox>
</td>
<td> <asp:ImageButton ID="btnPesquisar" runat="server" ImageUrl="~/Library/Imagem/btnFiltrar.png"
OnClick="btnPesquisar_Click" CssClass="button" ToolTip="Filtrar" />
</td>
<td> <asp:ImageButton ID="btnPlanoDeCargo" runat="server" ImageUrl="~/Library/Imagem/btnPlanoDeCarreira.png"
OnClick="btnPlanoDeCargo_Click" CssClass="button" ToolTip="Plano de Cargos e Salários" />
</td>
</tr>
</table>
</div>
<div class="areImprimissao">
<asp:ImageButton ID="btnExportarExcel" runat="server" ImageUrl="~/Library/Imagem/Imprimir/XLS.png"
CssClass="button" OnClick="btnExportarExcel_Click" ToolTip="Excel" />
<asp:ImageButton ID="btnExportarPdf" runat="server" ImageUrl="~/Library/Imagem/Imprimir/PDF.png"
CssClass="button" OnClick="btnExportarPdf_Click" ToolTip="Pdf" />
<asp:ImageButton ID="btnExportarTxt" runat="server" ImageUrl="~/Library/Imagem/Imprimir/TXT.png"
CssClass="button" OnClick="btnExportarTxt_Click" ToolTip="Txt" />
<asp:ImageButton ID="btnExportarOds" runat="server" ImageUrl="~/Library/Imagem/Imprimir/ODS.png"
CssClass="button" OnClick="btnExportarOds_Click" ToolTip="Calc" />
<asp:ImageButton ID="btnExportarOdt" runat="server" ImageUrl="~/Library/Imagem/Imprimir/ODT.png"
CssClass="button" OnClick="btnExportarOdt_Click" ToolTip="Write" />
<asp:ImageButton ID="btnNotaExplicativa" runat="server" ImageUrl="~/Library/Imagem/nota.png" Visible="false" CssClass="btnNotaExplicativa" OnClick="btnNotaExplicativa_Click" ToolTip="Visualizar Notas Explicativas" />
</div>
<div class="gridPrincipal">
<telerik:RadGrid ID="RadGrid" runat="server"
AllowPaging="true"
AllowFilteringByColumn="true"
Skin="Vista"
AllowSorting="true"
AutoGenerateColumns="False"
OnNeedDataSource="RadGrid_NeedDataSource"
OnItemCommand="RadGrid_ItemCommand"
OnItemCreated="RadGrid_ItemCreated"
FilterMenu-CollapseDelay="10000" SortingSettings-SortedAscToolTip="Crescente" SortingSettings-SortedDescToolTip="Decrescente">
<GroupingSettings CaseSensitive="false" />
<SortingSettings SortToolTip="Clique aqui para ordenar" />
<HierarchySettings CollapseTooltip="Clique aqui para recolher" ExpandTooltip="Clique aqui para expandir" SelfCollapseTooltip="" SelfExpandTooltip="" />
<PagerStyle FirstPageToolTip="Primeira Página" LastPageToolTip="Ultima Página" NextPagesToolTip="Proximas páginas" NextPageToolTip="Proxima página" PagerTextFormat="Alterar página: {4} &nbsp;Página <strong>{0}</strong> de <strong>{1}</strong>" PageSizeLabelText="Quantidade de Registros:" PrevPagesToolTip="Páginas anteriores" PrevPageToolTip="Página anterior" />
<MasterTableView DataKeyNames="ANO_MES,FPFUNCIONARIO_ID,IRRF,PREV" AllowMultiColumnSorting="false" ShowHeader="true" NoDetailRecordsText="Sem registros para exibir." NoMasterRecordsText="Sem registros para exibir."
ExpandCollapseColumn-ButtonType="ImageButton"
ExpandCollapseColumn-CollapseImageUrl="Library/Imagem/collapse.gif"
ExpandCollapseColumn-ExpandImageUrl="Library/Imagem/expandRed.gif"
ExpandCollapseColumn-HeaderText="Expandir">
<Columns>
<telerik:GridBoundColumn DataField="FPFUNCIONARIO_ID" AutoPostBackOnFilter="false"
HeaderText="Matrícula"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ANO_MES"
HeaderText="Ano/Mes"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="NOME" HeaderText="Nome" CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="CARGO" HeaderText="Cargo" AutoPostBackOnFilter="false"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="CARGO_ATUAL" HeaderText="Cargo Atual" AutoPostBackOnFilter="false"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="T_FUNCIONARIO" HeaderText="Tipo de Funcionário" AutoPostBackOnFilter="false"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="DIVISAO" HeaderText="Divisão" AutoPostBackOnFilter="false"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="SECAO" HeaderText="Seção" AutoPostBackOnFilter="false"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="DTA_ADMISSAO" HeaderText="Admissão" DataFormatString="{0:dd/MM/yyyy}"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="DTA_DEMISSAO" HeaderText="Demissão" DataFormatString="{0:dd/MM/yyyy}"
CurrentFilterFunction="Contains"
ShowFilterIcon="false"
FilterDelay="2000"
FilterControlWidth="100%">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="VALOR_GANHO" HeaderText="Total de Ganhos" DataFormatString="R$ {0:N}" AllowFiltering="false">
<FooterStyle Width="110px"></FooterStyle>
<HeaderStyle Width="110px"></HeaderStyle>
<ItemStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="OUTROS_DESCONTOS" HeaderText="Outros Descontos" DataType="System.Decimal" DataFormatString="R$ {0:N}" AllowFiltering="false">
<FooterStyle Width="110px"></FooterStyle>
<HeaderStyle Width="110px"></HeaderStyle>
<ItemStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="IRRF" HeaderText="Imposto de Renda" DataFormatString="R$ {0:N}" AllowFiltering="false">
<FooterStyle Width="120px"></FooterStyle>
<HeaderStyle Width="120px"></HeaderStyle>
<ItemStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="PREV" HeaderText="Previdência" DataFormatString="R$ {0:N}" AllowFiltering="false">
<FooterStyle Width="80px"></FooterStyle>
<HeaderStyle Width="80px"></HeaderStyle>
<ItemStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
</Columns>
<NestedViewTemplate>
<asp:Panel runat="server" ID="InnerContainer1" CssClass="viewWrap" Visible="false">
<%--INÍCIO DA GRID RadGrid1--%>
<telerik:RadGrid ID="RadGrid1" runat="server"
AllowPaging="True"
AllowFilteringByColumn="true"
Skin="Vista"
AllowSorting="true"
AutoGenerateColumns="False"
OnNeedDataSource="RadGrid1_NeedDataSource"
OnItemCommand="RadGrid1_ItemCommand"
OnItemCreated="RadGrid_ItemCreated"
FilterMenu-CollapseDelay="10000" SortingSettings-SortedAscToolTip="Crescente" SortingSettings-SortedDescToolTip="Decrescente">
<GroupingSettings CaseSensitive="false" />
<SortingSettings SortToolTip="Clique aqui para ordenar" />
<HierarchySettings CollapseTooltip="Clique aqui para recolher" ExpandTooltip="Clique aqui para expandir" SelfCollapseTooltip="" SelfExpandTooltip="" />
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="false" />
<ClientMessages PagerTooltipFormatString="Página <strong>{0}</strong> de <strong>{1}</strong>" />
</ClientSettings>
<GroupPanel Text="">
</GroupPanel>
<PagerStyle FirstPageToolTip="Primeira Página" LastPageToolTip="Ultima Página" NextPagesToolTip="Proximas páginas" NextPageToolTip="Proxima página" PagerTextFormat="Alterar página: {4} &nbsp;Página <strong>{0}</strong> de <strong>{1}</strong>" PageSizeLabelText="Quantidade de Registros:" PrevPagesToolTip="Páginas anteriores" PrevPageToolTip="Página anteriore" />
<FilterMenu EnableImageSprites="False"></FilterMenu>
<MasterTableView DataKeyNames="DESCRICAO" AllowMultiColumnSorting="false" ShowHeader="true" NoDetailRecordsText="Sem registros para exibir." NoMasterRecordsText="Sem registros para exibir."
ExpandCollapseColumn-ButtonType="ImageButton"
ExpandCollapseColumn-CollapseImageUrl="Library/Imagem/collapse.gif"
ExpandCollapseColumn-ExpandImageUrl="Library/Imagem/expandRed.gif"
ExpandCollapseColumn-HeaderText="Expandir">
<Columns>
<telerik:GridBoundColumn DataField="DESCRICAO" HeaderText="Descrição">
<FooterStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
</Columns>
<NestedViewTemplate>
<asp:Panel runat="server" ID="InnerContainer2" CssClass="viewWrap" Visible="false">
<%--INÍCIO DA GRID RadGrid2--%>
<telerik:RadGrid ID="RadGrid2" runat="server" AllowPaging="True" OnNeedDataSource="RadGrid2_NeedDataSource" Skin="Vista" OnItemDataBound="RadGrid2_ItemDataBound"
AllowSorting="true" AutoGenerateColumns="False" ShowFooter="True">
<SortingSettings SortToolTip="Clique aqui para ordenar" />
<HierarchySettings CollapseTooltip="" ExpandTooltip="Expandir" SelfCollapseTooltip="" SelfExpandTooltip="" />
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="false" />
<ClientMessages PagerTooltipFormatString="Página <strong>{0}</strong> de <strong>{1}</strong>" />
</ClientSettings>
<GroupPanel Text="">
</GroupPanel>
<PagerStyle FirstPageToolTip="Primeira Página" LastPageToolTip="Ultima Página" NextPagesToolTip="Proximas páginas" NextPageToolTip="Proxima página" PagerTextFormat="Alterar página: {4} &nbsp;Página <strong>{0}</strong> de <strong>{1}</strong>" PageSizeLabelText="Quantidade de Registros:" PrevPagesToolTip="Páginas anteriores" PrevPageToolTip="Página anteriore" />
<FilterMenu EnableImageSprites="False"></FilterMenu>
<MasterTableView AllowMultiColumnSorting="false" ShowHeader="true" NoDetailRecordsText="Sem registros para exibir." NoMasterRecordsText="Sem registros para exibir."
ExpandCollapseColumn-ButtonType="ImageButton"
ExpandCollapseColumn-CollapseImageUrl="Library/Imagem/collapse.gif"
ExpandCollapseColumn-ExpandImageUrl="Library/Imagem/expandRed.gif"
ExpandCollapseColumn-HeaderText="Expandir">
<Columns>
<telerik:GridBoundColumn DataField="DESCRICAO" HeaderText="Descrição">
<FooterStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="VALOR" HeaderText="Valor" DataFormatString="R$ {0:N}">
<FooterStyle Width="80px"></FooterStyle>
<HeaderStyle Width="80px"></HeaderStyle>
<ItemStyle HorizontalAlign="Right" />
<FooterStyle HorizontalAlign="Right" />
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
<%--FIM DA GRID RadGrid2--%>
</asp:Panel>
</NestedViewTemplate>
</MasterTableView>
</telerik:RadGrid>
</asp:Panel>
</NestedViewTemplate>
</MasterTableView>
</telerik:RadGrid>
</div>
</div>
</asp:Content>