-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebForm2.aspx
30 lines (28 loc) · 1.16 KB
/
WebForm2.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
<%@ Page Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebAPP_Master_TRY2.WebForm2" %>
<asp:Content ID="cd1" ContentPlaceHolderID="head" runat="server"></asp:Content>
<asp:Content ID="cd2" ContentPlaceHolderID="body" runat="server">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title></title></head>
<body>
<div class="alert alert-success ">
<center>
<b><i>Application Development Tools</i></b>
<br />
<b>Practical 12</b>
<br />
<b>Page - 2 </b>
</center>
</div>
<div class="jumbotron jumbotron-fluid">
<br />
<div class="container" style="height:150px;">
<h2 class="display-3">Aim</h2>
<h4 class="display-5">Design & Develop ASP.net web application using master & content page.</h4>
<p class="lead display-7">This Practical Contains Master Page named Site1 and has 3 content pages.
Header and Footer are written inside of the Master Page.
</p>
</div>
</div>
</body>
</html>
</asp:Content>