TFS_ANTIGUO/ControlGestiones/Sistema CGC/Gestion.UI/Recibos/RecibosBusquedaCliente.aspx
asaenz d1acfe3500 Solucion inicial
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C549
2022-06-16 14:35:51 +00:00

70 lines
4.7 KiB
Text

<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="RecibosBusquedaCliente.aspx.cs" Inherits="RecibosBusquedaCliente" Title="Búsqueda de recibos por cliente" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre esta consulta" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Recibos" ToolTip="Consulta los recibos que han sido registrados por la institución"></asp:Label></td>
</tr>
<tr>
<td colspan="2" style="height: 22px; text-align: left">
<asp:Label ID="lbDatos" runat="server" Font-Bold="True" Text="Búsqueda de servicios por cliente" ToolTip="Consulta los servicios según los datos del cliente"></asp:Label></td>
</tr>
<tr style="text-align: left">
<td style="width: 142px; height: 21px">
<asp:Label ID="lbCodCliente" runat="server" Text="Indentificación cliente:" ToolTip="Corresponde al número de identificación del cliente"></asp:Label></td>
<td style="height: 21px">
<asp:TextBox ID="txtCodCliente" runat="server" Width="177px" MaxLength="8" ToolTip="Corresponde al número de identificación del cliente"></asp:TextBox>
<asp:RegularExpressionValidator ID="revIDCliente" runat="server" ControlToValidate="txtCodCliente"
Display="Dynamic" ErrorMessage="Formato incorrecto de identificación del cliente"
ValidationExpression="\d{8}"></asp:RegularExpressionValidator></td>
</tr>
<tr style="text-align: left">
<td style="width: 142px; height: 21px">
<asp:Label ID="lbNombre" runat="server" Font-Bold="False" Text="Nombre: " ToolTip="Corresponde al nombre del cliente"></asp:Label></td>
<td style="height: 21px">
<asp:TextBox ID="txtNombre" runat="server" Width="177px" ToolTip="Corresponde al nombre del cliente"></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 142px; height: 21px">
<asp:Label ID="lbApellido1" runat="server" Text="Primer apellido: " ToolTip="Corresponde al primer apellido del cliente"></asp:Label></td>
<td style="height: 21px">
<asp:TextBox ID="txtApellido1" runat="server" Width="177px" ToolTip="Corresponde al primer apellido} del cliente"></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 142px">
<asp:Label ID="lbApellido2" runat="server" Text="Segundo apellido: " ToolTip="Corresponde al segundo apellido del cliente"></asp:Label></td>
<td>
<asp:TextBox ID="txtApellido2" runat="server" Width="177px" ToolTip="Corresponde al segundo apellido del cliente"></asp:TextBox>
</td>
</tr>
<tr style="text-align: left">
<td style="width: 142px">
<asp:Label ID="lbDireccion" runat="server" Text="Dirección:" ToolTip="Corresponde a la dirección del cliente"></asp:Label></td>
<td>
<asp:TextBox ID="txtDireccion" runat="server" Rows="3" TextMode="MultiLine" Width="417px" ToolTip="Corresponde a la dirección del cliente"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnBuscar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/buscar.png"
OnClick="ibtnBuscar_Click" ToolTip="Buscar Clientes" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
<div style="font-size: 11px; font-family: Arial; text-align: center">
&nbsp;</div>
</asp:Content>