101 lines
4.8 KiB
Plaintext
101 lines
4.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PopUpSintesi.aspx.cs" Inherits="PopUpSintesi" %>
|
|
|
|
<!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>Sintesi Cliente</title>
|
|
<link href="CSS/tv.css" type="text/css" rel="stylesheet" />
|
|
<link href="CSS/Pagina.css" rel="stylesheet" type="text/css" />
|
|
<base target="_self"></base>
|
|
<script language="javascript" type="text/javascript">
|
|
function Conferma(){
|
|
window.returnValue = 1;
|
|
window.close();
|
|
}
|
|
function Annulla(){
|
|
window.returnValue = 0;
|
|
window.close();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div>
|
|
<table border="0" cellpadding="0" cellspacing="0" style="width: 500px;">
|
|
<tr>
|
|
<td >
|
|
<asp:Label id="lblTitle" runat="server" CssClass="stateTitle" Font-Bold="True" ForeColor="White" Height="16px" Width="100%">DATI DI SINTESI DEL CLIENTE</asp:Label></td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
|
|
<table border="0" cellpadding="8" cellspacing="0" width="100%">
|
|
<tr>
|
|
<td style="background-color: gainsboro; width: 179px;">
|
|
<asp:Label ID="Label1" runat="server" Text="Nome e Cognome" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
<td style="background-color: ghostwhite; ">
|
|
<asp:Label ID="lblNomeCognome" runat="server" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: gainsboro; width: 179px;">
|
|
<asp:Label ID="Label2" runat="server" Text="Data di nascita (gg/mm/aaaa)" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
<td style="background-color: ghostwhite;">
|
|
<asp:Label ID="lblDataNascita" runat="server" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: gainsboro; width: 179px;">
|
|
<asp:Label ID="Label3" runat="server" Text="Codice Fiscale" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
<td style="background-color: ghostwhite; ">
|
|
<asp:Label ID="lblCodiceFiscale" runat="server" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: gainsboro; width: 179px;">
|
|
<asp:Label ID="Label4" runat="server" Text="Codice Contratto" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
<td style="background-color: ghostwhite;">
|
|
<asp:Label ID="lblCodiceContratto" runat="server" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: gainsboro; width: 179px;">
|
|
<asp:Label ID="Label5" runat="server" Text="Indirizzo di Contratto" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
<td style="background-color: ghostwhite;">
|
|
<asp:Label ID="lblIndirizzoDiContratto" runat="server" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: gainsboro; width: 179px;">
|
|
<asp:Label ID="Label6" runat="server" Text="Presso" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
<td style="background-color: ghostwhite;">
|
|
<asp:Label ID="lblPresso" runat="server" CssClass="lblSchede"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" >
|
|
<input id="btnConferma" type="button" value="CONFERMA" onclick="javscript:Conferma()"/>
|
|
<input id="btnAnnulla" type="button" value="ANNULLA" onclick="javscript:Annulla()"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|