-
Notifications
You must be signed in to change notification settings - Fork 0
/
Insertar.aspx
54 lines (49 loc) · 2.15 KB
/
Insertar.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Insertar.aspx.cs" Inherits="prueba_de_ASP.NET.WebForm2" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 100%;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="auto-style1">
<tr>
<td colspan="2" style="font-size: x-large; font-weight: bold; font-family: Arial, Helvetica, sans-serif">Insertar Articulos</td>
</tr>
<tr>
<td class="modal-sm" style="font-family: Arial, Helvetica, sans-serif; font-size: large; font-weight: bold; width: 384px;"> Nombre</td>
<td>
<br />
<asp:TextBox ID="tbNombre" runat="server" Width="398px" Height="27px"></asp:TextBox>
<br />
</td>
</tr>
<tr>
<td class="modal-sm" style="font-family: Arial, Helvetica, sans-serif; font-size: large; font-weight: bold; width: 384px;"> Precio</td>
<td>
<br />
<asp:TextBox ID="tbPrecio" runat="server" Width="400px" Height="26px"></asp:TextBox>
<br />
<br />
</td>
</tr>
<tr>
<td class="modal-sm" style="width: 384px"> </td>
<td>
<asp:Button ID="btnCancelar" runat="server" Height="39px" Text="Cancelar" Width="76px" OnClick="btnCancelar_Click" style="margin-left: 29" />
<asp:Button ID="btnAgregar" runat="server" Height="39px" Text="Agregar" Width="76px" OnClick="btnAgregar_Click" style="margin-left: 14"/>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>