Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 1.78 KB | None | 0 0
  1. <%@ Control language="vb" Inherits="YourCompany.Modules.Alunos.EditAlunos" AutoEventWireup="false" Explicit="True" Codebehind="EditAlunos.ascx.vb" %>
  2.  
  3. <table width="80%">
  4.     <tr>
  5.         <td colspan="2">
  6.             Update&nbsp;Alunos</td>
  7.     </tr>
  8.     <tr>
  9.         <td width="30%">
  10.             <asp:Label ID="lblNome" runat="server" Text="Nome"></asp:Label>
  11.         </td>
  12.         <td width="70%">
  13.             <asp:TextBox ID="txtNome" runat="server"></asp:TextBox>
  14.         </td>
  15.     </tr>
  16.     <tr>
  17.         <td>
  18.             <asp:Label ID="lblDtNascimento" runat="server" Text="Data de Nascimento"></asp:Label>
  19.         </td>
  20.         <td>
  21.             <asp:TextBox ID="txtDtNascimento" runat="server"></asp:TextBox>
  22.         </td>
  23.     </tr>
  24.     <tr>
  25.         <td>
  26.             <asp:Label ID="lblTelefone" runat="server" Text="Telefone"></asp:Label>
  27.         </td>
  28.         <td>
  29.             <asp:TextBox ID="txtTelefone" runat="server"></asp:TextBox>
  30.         </td>
  31.     </tr>
  32.     <tr>
  33.         <td>
  34.             <asp:Label ID="lblCurso" runat="server" Text="Curso"></asp:Label>
  35.         </td>
  36.         <td>
  37.             <asp:DropDownList ID="ddlCurso" runat="server">
  38.             <asp:ListItem Text="Java" Value="java" />
  39.             <asp:ListItem Text="WebDesigner" Value="designer" />
  40.             <asp:ListItem Text="DotNetNuke" Value="dnn" />
  41.             <asp:ListItem Text="Outros" Value="outros" />
  42.             </asp:DropDownList>
  43.         </td>
  44.     </tr>
  45.     <tr>
  46.         <td>
  47.             <asp:Button ID="btnAddAlunos" runat="server" Text="Add Alunos" />
  48.             &nbsp;<asp:Button ID="btnBack" runat="server" Text="Back" />
  49.         </td>
  50.         <td>
  51.             &nbsp;</td>
  52.     </tr>
  53.     <tr>
  54.         <td colspan="2">
  55.             [lblMessage]</td>
  56.     </tr>
  57. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement