Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="FiscalCode.aspx.vb" Inherits="CodiceFiscale.Web.FiscalCode" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>Calcolo del Codice Fiscale</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:Panel ID="Panel1" runat="server" BackColor="Green" ForeColor="White" Height="386px" Width="500px">
- <asp:Label ID="Label1" runat="server" Text="Calcolo del Codice Fiscale" Font-Size="24pt" ForeColor="White"></asp:Label>
- <br />
- <asp:Label ID="Label2" runat="server" Font-Bold="True" ForeColor="White" Text="Nome:"></asp:Label>
- <br />
- <asp:TextBox ID="txtFirstName" runat="server"></asp:TextBox>
- <br />
- <asp:Label ID="Label3" runat="server" Font-Bold="True" ForeColor="White" Text="Cognome:"></asp:Label>
- <br />
- <asp:TextBox ID="txtLastName" runat="server"></asp:TextBox>
- <br />
- <asp:Label ID="Label5" runat="server" Font-Bold="True" ForeColor="White" Text="Sesso:"></asp:Label>
- <asp:RadioButtonList ID="rbSex" runat="server" RepeatDirection="Horizontal">
- <asp:ListItem Selected="True">M</asp:ListItem>
- <asp:ListItem>F</asp:ListItem>
- </asp:RadioButtonList>
- <br />
- <asp:Label ID="Label6" runat="server" Font-Bold="True" ForeColor="White" Text="Data di Nascita:"></asp:Label>
- <br />
- <asp:TextBox ID="txtDate" runat="server"></asp:TextBox>
- <br />
- <asp:Label ID="Label4" runat="server" Font-Bold="True" ForeColor="White" Text="Città:"></asp:Label>
- <br />
- <asp:TextBox ID="txtCity" runat="server"></asp:TextBox>
- <br />
- <asp:Button ID="btnCalc" runat="server" Text="Calcola" />
- <br />
- <asp:Label ID="lblFiscalCode" runat="server" Font-Bold="True" ForeColor="White" Text="RISULTATO"></asp:Label>
- </asp:Panel>
- </div>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement