Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/06/2010, 08:01
Avatar de Gusith
Gusith
 
Fecha de Ingreso: junio-2010
Mensajes: 5
Antigüedad: 13 años, 11 meses
Puntos: 0
Favor Ayuda con el GridView... no me muestra los datos...

Hola al hacer correr la web, no muestra los datos del Gridview, sin embargo el el Procedimiento de almacenado es correcto y si arroja datos...

este es el codigo

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="validador.aspx.vb" Inherits="Transacciones_validacion_ordenesLGE_vali dador" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Validacion de Envios y Despachos LGE</title>
<style type="text/css">
.style1
{
color: #0066FF;
font-weight: bold;
}
.style2
{
font-weight: bold;
text-decoration: underline;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<br />
<asp:Label ID="Label1" runat="server" Font-Bold="True" ForeColor="#0066FF"
style="color: #0000FF; background-color: #99CCFF"
Text="XXX"></asp:Label>
<br />
<br />
<asp:TextBox ID="txtAreaCopiado" runat="server" Height="138px" TextMode="MultiLine"></asp:TextBox>
<br />
<br />
<span class="style2">Seleccione el Tipo de Documento</span><br />
<span class="style1">
<asp:RadioButton ID="rbRecepcion" runat="server" GroupName="Negocio" />
Recepcion</span><br />
<span class="style1">
<asp:RadioButton ID="rbDespacho" runat="server" GroupName="Negocio" />
Despacho</span><br />
</span>
<br />
<asp:Button ID="BtAceptar" runat="server" Text="Aceptar"
Font-Bold="True" />
<br />
</div>
<asp:GridView ID="GridView1" runat="server" DataSourceID="ds_GetCheck">
</asp:GridView>
<asp:SqlDataSource ID="ds_GetCheck" runat="server"
ConnectionString="<%$ ConnectionStrings:XXXXX %>"
SelectCommand="sp_CheckOrdenes" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter Name="texto" Type="String" />
<asp:Parameter Name="radio" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
</form>
</body>
</html>


PLIS AYUDA!!!!