-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin.aspx
38 lines (33 loc) · 1.01 KB
/
Admin.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage2.master" AutoEventWireup="true" CodeFile="Admin.aspx.cs" Inherits="Admin" %>
<asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">Admin Page
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.dh
{
border: solid 1px;
width:200px;
height:200px;
float:left;
padding:30px;
margin:60px;
background-color:blueviolet;
text-align:center;
}
h2
{
color:yellow;
}
</style>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="body" Runat="Server">
<div class="dh">
<a href="AddQuestions.aspx"><h2>Add<br />Question</h2></a>
</div>
<div class="dh">
<a href="SeeUsers.aspx"> <h2>See<br />Users</h2></a> </div>
<div class="dh">
<a href="SeeFeedback.aspx"><h2>See<br />Feedback</h2></a>
</div>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</asp:Content>