56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" Inherits="autoEnroll" Codebehind="autoEnroll.aspx.cs" %>
|
|
|
|
<!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></title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div style="text-align:center;">
|
|
<h1>
|
|
Registrazione nuovo utente
|
|
</h1>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
Cognome:
|
|
</td>
|
|
<td>
|
|
<asp:TextBox ID="txtCognome" runat="server" />
|
|
<asp:RequiredFieldValidator ID="rfvCognome" runat="server" ErrorMessage="Richiesto!"
|
|
ControlToValidate="txtCognome" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Nome:
|
|
</td>
|
|
<td>
|
|
<asp:TextBox ID="txtNome" runat="server" />
|
|
<asp:RequiredFieldValidator ID="rfvNome" runat="server" ErrorMessage="Richiesto!"
|
|
ControlToValidate="txtNome" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
email:
|
|
</td>
|
|
<td>
|
|
<asp:TextBox ID="txtEmail" runat="server" />
|
|
<asp:RequiredFieldValidator ID="rfvEmail" runat="server" ErrorMessage="Richiesto!"
|
|
ControlToValidate="txtEmail" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="center">
|
|
<asp:Button ID="btnSave" runat="server" Text="Salva" Width="200px"
|
|
onclick="btnSave_Click" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|