-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdminMasterPage.master
153 lines (131 loc) · 5.85 KB
/
AdminMasterPage.master
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="AdminMasterPage.master.cs" Inherits="AdminMasterPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>My E-Shopping</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<link href="css/Custome.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style type="text/css">
.auto-style1 {
float: left;
height: 50px;
padding: 15px 15px;
line-height: 20px;
}
.auto-style2 {
font-size: large;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<!---Navbar start--->
<div class ="navbar navbar-default navbar-fixed-top " role ="navigation" >
<div class ="container ">
<div class ="navbar-header">
<button type="button" class ="navbar-toggle " data-toggle="collapse" data-target=".navbar-collapse">
<span class ="sr-only">Toggle navigation</span>
<span class ="icon-bar"></span>
<span class ="icon-bar"></span>
<span class ="icon-bar"></span>
</button>
<a class ="navbar-brand" href ="Default.aspx" ><span ><img src="icons/download.png" alt="EasyBuy E-Shoppoing" height ="30" /></span></a><span class="auto-style2"><a class ="auto-style1" href ="Default.aspx" ><strong>EasyBuy E-Shopping </strong> </a>
</span>
</div>
<div class ="navbar-collapse collapse">
<ul class ="nav navbar-nav navbar-right">
<li ><a href ="Default.aspx">Home</a> </li>
<li ><a href="About.aspx">About</a> </li>
<li ><a href ="#">Contact US</a> </li>
<%-- <li ><a href ="#">Blog-</a> </li>--%>
<li class ="drodown">
<a href ="#" class ="dropdown-toggle" data-toggle="dropdown">Products<b class ="caret"></b></a>
<ul class ="dropdown-menu ">
<li> <a href ="AddProduct.aspx">Add Product</a></li>
</ul>
</li>
<li class ="drodown" >
<a href ="#" class ="dropdown-toggle" data-toggle="dropdown">Manage <b class ="caret"></b></a>
<ul class ="dropdown-menu">
<li ><a href ="AddBrand.aspx">Add Brand</a> </li>
<li ><a href ="AddCategory.aspx">Add Category</a> </li>
<li ><a href ="SubCategory.aspx">Add SubCategory</a> </li>
<li ><a href ="AddGender.aspx">Add Gender</a> </li>
<li ><a href ="AddSize.aspx">Add Size</a> </li>
<li role="separator" class ="divider "></li>
<li ><a href ="EditBrand.aspx">Edit Brand</a> </li>
<li ><a href="EditCategory.aspx">Edit Category</a> </li>
<li ><a href="EditSubCategory.aspx">Edit SubCategory</a> </li>
<li ><a href="EditSize.aspx">Edit Size</a> </li>
<li role="separator" class ="divider "></li>
<li ><a href="Report.aspx">Report</a> </li>
</ul>
</li>
<li >
<asp:Button ID="btnAdminlogout" CssClass ="btn btn-default navbar-btn " runat="server" Text="Sign Out" OnClick="btnAdminlogout_Click" />
</li>
</ul>
</div>
</div>
</div>
<!---navbar end--->
<div class="container ">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</div>
</form>
<!---Footer COntents Start here---->
<p>
<br />
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<footer>
<div class ="container ">
<p class ="pull-right "><a href ="#"> Back to top </a></p>
<p class ="pull-right "><a href="SignIn.aspx"> User Login </a></p>
<p>©2021 EasyBuyE-Shopping.in · <a href ="Default.aspx">Home</a>·<a href ="#">About</a>·<a href ="#">Contact</a>·<a href ="#">Products</a> </p>
</div>
</footer>
<!---Footer COntents End---->
</body>
</html>