Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%@ Page Language="VB" Debug="True" %>
<script runat="server">
nowJob.Text = Session("nowJob")
ybJob.Text = Session("ybJob")
if Session("ybJob") = "" then ybLbl.Visible = False
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<p>
<asp:Label id="ybLbl" runat="server" Font-Size="Larger" Font-Bold="True">Yearbooks</asp:Label>
</p>
<p>
<asp:Label id="packLbl" runat="server" Font-Size="Larger" Font-Bold="True">Packages</asp:Label>
</p>
<asp:Label id="nowJob" runat="server">Label</asp:Label>
<br />
<asp:Label id="ybJob" runat="server">Label</asp:Label>
</form>
</body>
</html>