Ver Mensaje Individual
  #7 (permalink)  
Antiguo 09/04/2008, 08:03
Drunkman
 
Fecha de Ingreso: abril-2008
Mensajes: 4
Antigüedad: 16 años, 11 meses
Puntos: 0
Re: Problema llamar desde un gridview a un panel

Cita:
Iniciado por Javier Santamaria Ver Mensaje
Debuggea para que veas en en que linea salta el error. Eso te dara mas informacion. Si no sabes que puede ser copialo aqui y miramos a ver que puede estar pasando
debugeo pero se cae en la master page...en la parte donde verifica la session
aqui va mi pagina.aspx...anterirmente subi el code behind

<%@ Page Language="VB" MasterPageFile="~/MainPage.master" AutoEventWireup="false" CodeFile="WebServiciosDominioEmailAdministrar.aspx .vb" Inherits="WebServiciosDominioEmailAdministrar" %>

<%@ Register Assembly="Anthem" Namespace="Anthem" TagPrefix="anthem" %>
<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="ContentPlaceHolder1">
<table border="0" style="left: 0px; width: 680px; position: relative; top: 0px">
<tr>
<td align="left" class="TituloPagina" style="width: 102px; height: 25px">
Servicios&nbsp;</td>
<td style="width: 36px; height: 25px">
<img src="Imagenes/Paula/flecha.bmp" style="border-right: 0px; border-top: 0px; border-left: 0px;
border-bottom: 0px" />
</td>
<td align="left" class="SubTituloPagina" style="height: 25px">
Dominio Email Administrador</td>
</tr>
</table>
<anthem:Panel ID="PanelDomEmialAdmin" runat="server" Style="left: 0px; position: relative;
top: 0px">
<anthem:DataGrid ID="GridDominioEmailAdmin" runat="server" AutoGenerateColumns="False"
BorderColor="Silver" BorderWidth="0px" CellPadding="0" DataKeyField="id_dominio" Font-Bold="True" Font-Names="Tahoma"
Font-Size="10px" GridLines="None" Height="0px" PageSize="20" Style="position: relative; left: 0px; top: 0px;"
UpdateAfterCallBack="True" Width="700px" AutoUpdateAfterCallBack="True">
<FooterStyle BackColor="Transparent" />
<Columns>
<asp:TemplateColumn>
<headertemplate>
<asp:Image style="POSITION: relative" id="Image1" runat="server" __designer:wfdid="w14" ImageUrl="~/Imagenes/Paula/Esquina.bmp"></asp:Image>
</headertemplate>
<headerstyle width="10px" />
</asp:TemplateColumn>
<asp:BoundColumn DataField="cuenta" HeaderText="Usuario" ReadOnly="True" SortExpression="cuenta">
</asp:BoundColumn>
<asp:BoundColumn DataField="alias" HeaderText="Alias" ReadOnly="True" SortExpression="alias">
</asp:BoundColumn>
<asp:TemplateColumn HeaderText="Modificar">
<itemtemplate>
<anthem:ImageButton style="POSITION: relative" id="img_modificar" runat="server" AutoUpdateAfterCallBack="True" ImageUrl="~/Imagenes/Paula/Btn_Actualizar.bmp" __designer:wfdid="w24" CommandName="Modificar" CausesValidation="False"></anthem:ImageButton>
</itemtemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="Eliminar">
<itemtemplate>
<anthem:ImageButton style="POSITION: relative" id="img_eliminar" runat="server" ImageUrl="~/Imagenes/Paula/Cerrar_Adm.bmp" __designer:wfdid="w3"></anthem:ImageButton>
</itemtemplate>
</asp:TemplateColumn>
<asp:BoundColumn DataField="id_dominio" HeaderText="id_dominio" ReadOnly="True"
Visible="False"></asp:BoundColumn>
</Columns>
<HeaderStyle BackColor="#9B989C" CssClass="TituloGrillaAdmin" Font-Bold="False" Font-Italic="False"
Font-Overline="False" Font-Size="Small" Font-Strikeout="False" Font-Underline="False" />
<AlternatingItemStyle BackColor="#F3F3F3" />
</anthem:DataGrid>
<asp:HiddenField ID="hid_id_dominio" runat="server" />
</anthem:Panel>
<anthem:Panel ID="Panel1" runat="server" Style="left: 0px; position: relative; top: 0px"
Visible="False">
<anthem:Image ID="Image2" runat="server" ImageUrl="~/Imagenes/icono_dowload.gif"
Style="position: relative" /></anthem:Panel>

</asp:Content>