Assignment 9
Assignment 9
MasterPage.Master
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
<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>
<table class="style1">
<tr>
<td>
<asp:Image ID="Image1" runat="server" ImageUrl="~/ASP.jpg" />
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
</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>
Assignment=09
Output: