-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.aspx
42 lines (40 loc) · 2.76 KB
/
Index.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="Tarea1_Wander_Aaron.WebForm1" %>
<!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></title>
<style type="text/css">
.auto-style1 {
width: 785px;
height: 304px;
position: absolute;
left: 31px;
top: 28px;
}
</style>
</head>
<body>
<form id="formFondo" runat="server" class="auto-style1" style="background-color: #5D7B9D" submitdisabledcontrols="True">
<asp:GridView ID="gridArticulos" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" Height="191px" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" Width="785px">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<EditRowStyle BackColor="#999999" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
<br />
<br />
<asp:Button ID="btnInsertar" runat="server" Height="40px" OnClick="Button1_Click" Text="INSERTAR" Width="100px" BackColor="#F7F6F3" BorderColor="#000099" BorderStyle="Dotted" />
<asp:Button ID="btnCerrar" runat="server" Height="40px" OnClick="Button2_Click" Text="CERRAR" Width="100px" BackColor="#F7F6F3" BorderColor="#000099" BorderStyle="Dotted" />
</form>
</body>
</html>