-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsertarArtic.aspx
62 lines (60 loc) · 2.73 KB
/
InsertarArtic.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="InsertarArtic.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 100%;
}
.auto-style2 {
width: 496px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="auto-style1">
<tr>
<td colspan="2">
<asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Names="Arial" Font-Size="X-Large" Text="Insertar Nuevos Articulos"></asp:Label>
</td>
</tr>
<tr>
<td class="auto-style2">
<asp:Label ID="Label2" runat="server" Font-Bold="True" Font-Names="Arial" Font-Size="Large" Text="Nombre"></asp:Label>
</td>
<td>
<asp:TextBox ID="tbNombre" runat="server" Height="27px" Width="397px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">
<asp:Label ID="Label3" runat="server" Font-Bold="True" Font-Names="Arial" Font-Size="Large" Text="Clase"></asp:Label>
</td>
<td>
<asp:DropDownList ID="ddlClases" runat="server" Height="39px" Width="256px">
</asp:DropDownList>
</td>
</tr>
<tr>
<td class="auto-style2">
<asp:Label ID="Label4" runat="server" Font-Bold="True" Font-Names="Arial" Font-Size="Large" Text="Precio"></asp:Label>
</td>
<td>
<asp:TextBox ID="tbPrecio" runat="server" Height="27px" Width="396px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
<asp:Button ID="btnCancelar" runat="server" Height="34px" Text="Cancelar" Width="82px" OnClick="btnCancelar_Click" />
<asp:Button ID="btnAregar" runat="server" Height="34px" Text="Agregar" Width="92px" OnClick="btnAregar_Click" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>