Advertisement
NelloRizzo

[ASPX] Form Web per inserimento dati di Persona

Feb 15th, 2017
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 2.18 KB | None | 0 0
  1. <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="FiscalCode.aspx.vb" Inherits="CodiceFiscale.Web.FiscalCode" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  8.     <title>Calcolo del Codice Fiscale</title>
  9. </head>
  10. <body>
  11.     <form id="form1" runat="server">
  12.     <div>
  13.    
  14.         <asp:Panel ID="Panel1" runat="server" BackColor="Green" ForeColor="White" Height="386px" Width="500px">
  15.             <asp:Label ID="Label1" runat="server" Text="Calcolo del Codice Fiscale" Font-Size="24pt" ForeColor="White"></asp:Label>
  16.             <br />
  17.             <asp:Label ID="Label2" runat="server" Font-Bold="True" ForeColor="White" Text="Nome:"></asp:Label>
  18.             <br />
  19.             <asp:TextBox ID="txtFirstName" runat="server"></asp:TextBox>
  20.             <br />
  21.             <asp:Label ID="Label3" runat="server" Font-Bold="True" ForeColor="White" Text="Cognome:"></asp:Label>
  22.             <br />
  23.             <asp:TextBox ID="txtLastName" runat="server"></asp:TextBox>
  24.             <br />
  25.             <asp:Label ID="Label5" runat="server" Font-Bold="True" ForeColor="White" Text="Sesso:"></asp:Label>
  26.             <asp:RadioButtonList ID="rbSex" runat="server" RepeatDirection="Horizontal">
  27.                 <asp:ListItem Selected="True">M</asp:ListItem>
  28.                 <asp:ListItem>F</asp:ListItem>
  29.             </asp:RadioButtonList>
  30.             <br />
  31.             <asp:Label ID="Label6" runat="server" Font-Bold="True" ForeColor="White" Text="Data di Nascita:"></asp:Label>
  32.             <br />
  33.             <asp:TextBox ID="txtDate" runat="server"></asp:TextBox>
  34.             <br />
  35.             <asp:Label ID="Label4" runat="server" Font-Bold="True" ForeColor="White" Text="Città:"></asp:Label>
  36.             <br />
  37.             <asp:TextBox ID="txtCity" runat="server"></asp:TextBox>
  38.             <br />
  39.             <asp:Button ID="btnCalc" runat="server" Text="Calcola" />
  40.             <br />
  41.             <asp:Label ID="lblFiscalCode" runat="server" Font-Bold="True" ForeColor="White" Text="RISULTATO"></asp:Label>
  42.         </asp:Panel>
  43.    
  44.     </div>
  45.     </form>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement