0% found this document useful (0 votes)
5 views

Assignment 9

Uploaded by

jokxr360
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Assignment 9

Uploaded by

jokxr360
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Assignment=09

Q.1) Create a MasterPage and Add Content Page .

MasterPage.Master
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
.style1
{
width: 100%;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>Hello!This Anime is Superb</h1>

<asp:Image ID="Image2" runat="server" />


</div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">

<table class="style1">
<tr>
<td>
<asp:Image ID="Image1" runat="server" ImageUrl="~/ASP.jpg" />
</td>
</tr>
<tr>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
</tr>
</table>

</asp:ContentPlaceHolder>
<div>
<h1>Anime Name: Jujutsu Kaisan</h1>
</div>
</div>
</form>
</body>
</html>

Default2.aspx
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false"
CodeFile="Default2.aspx.vb" Inherits="Default2" title="Untitled Page" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">


</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<asp:Image ID="Image3" runat="server" Height="260px"


ImageUrl="~/download.jpeg" Width="264px" />

</asp:Content>
Assignment=09
Output:

You might also like