-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMasterPage.master
More file actions
56 lines (38 loc) · 1.73 KB
/
MasterPage.master
File metadata and controls
56 lines (38 loc) · 1.73 KB
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
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE html>
<html>
<head runat="server">
<link rel="stylesheet" href="stylesheet.css" />
<title>BusBooking</title>
</head>
<body class="body" >
<form id="form1" runat="server">
<div class="header" runat="server">
<br/>
<asp:Image runat="server" ImageUrl="~/bus.png" ImageAlign="Left" style="z-index: 1; left: 29px; top: 20px; position: absolute; height: 92px; width: 179px"/>
<asp:Label ID="Label1" runat="server" SkinID="main" > BusBooking </asp:Label>
<br/>
<asp:ContentPlaceHolder ID="ContentPlaceHolder2" runat="server">
</asp:ContentPlaceHolder>
<asp:ContentPlaceHolder ID="ContentPlaceHolder3" runat="server">
<asp:ImageButton ID="ImageButton1" PostBackUrl="~/MainPage.aspx" ImageUrl="~/logout.jpg" runat="server" Height="23px" style="z-index: 1; left: 827px; top: 47px; position: absolute" Width="115px"/>
</asp:ContentPlaceHolder>
</div>
<div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<br/>
<%--
<div class="footer">
<asp:Label ID="Label2" runat="server" Font-Size="7px" ForeColor="white">
<h2>IT_LAB Project, Bus Ticket Booking Website</h2>
<h2> Project By: Sahil Garg, Jenit Jain </h2>
<h2> Registration ID: 160905058, 160905070</h2>
<h2> Roll numbers: 8,9 </h2>
</asp:Label>
</div>
--%>
</form>
</body>
</html>