-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVaccineData.aspx
19 lines (18 loc) · 1.17 KB
/
VaccineData.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%@ Page Title="" Language="C#" MasterPageFile="~/Admin.Master" AutoEventWireup="true" CodeBehind="VaccineData.aspx.cs" Inherits="DC.VaccineData" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<table style="border-style: solid; border-width: medium; width: 98%; margin: 20px; border-radius: 10px; height: 100%">
<tr>
<td style="font-size: 40px; font-weight: bold; color: #CCCCCC; text-align: center; border-radius: 5px; background: linear-gradient(to left, #2c3e50, #3498db);">Vaccine Data</td>
</tr>
<tr>
<td style="background: linear-gradient(to right, #2193b0, #6dd5ed); border-radius: 5px">
<asp:GridView ID="GridView1" runat="server" Width="100%" RowStyle-HorizontalAlign="Center" GridLines="None" Font-Bold="True" Font-Size="X-Large">
<HeaderStyle BackColor="lightgrey" ForeColor="#CC6699" />
<RowStyle HorizontalAlign="Center" ForeColor="White"></RowStyle>
</asp:GridView>
</td>
</tr>
</table>
</asp:Content>