default.aspx.vb
Partial Class _Default
Inherits System.Web.UI.Page
End Class
Sub Page_Load(ByVal Sender As Object, ByVal e As EventArgs)
Dim thispage As String = Request.QueryString("page")
Dim writeEmptyPage() As String
Dim writeSpillePage() As String
Dim writeBestyrelsePage() As String
Dim writeUngdomsUdPage() As String
Dim writeMedlemPage() As String
Dim writeSponsorPage() As String
If thispage = "" Then
writeEmptyPage()
ElseIf thispage = "atspille" Then
writeSpillePage()
ElseIf thispage = "bestyrelsen" Then
writeBestyrelsePage()
ElseIf thispage = "ungdomsudvalg" Then
writeUngdomsUdPage()
ElseIf thispage = "medlemsskab" Then
writeMedlemPage()
ElseIf thispage = "sponsor" Then
writeSponsorPage()
End If
End Sub
default.aspx
<%@ Page Language="VB" MasterPageFile="default.master" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<asp:content id="startsite" contentplaceholderid="Main" runat="server">
tester
</asp:content>
default.master
<%@ Master Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><script runat="server">
</script>
<html xmlns="
http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<link rel="stylesheet" type="text/css" href="include/style.css" title="style" />
</head>
<body>
<table cellpadding="0px" cellspacing="0px" class="TableMain">
<tr>
<td colspan="5" class="TopBanner"></td>
</tr>
<tr>
<td rowspan="2" class="TableLeft"></td>
<td width="503px" align="center" valign="top">
<table width="100%" border="0px" cellspacing="0px" cellpadding="0px">
<tr>
<td>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="503px" height="64px" title="menu">
<param name="movie" value="bif_menu_test.swf" />
<param name="quality" value="high" />
<embed src="bif_menu_test.swf" pluginspage="
http://www.macromedia.com/go/getflashplayer" width="503px" height="64px"></embed>
</object>
</td>
</tr>
<tr>
<td>
<form id="form1" runat="server">
<div>
<asp:contentplaceholder id="main" runat="server">
</asp:contentplaceholder>
</div>
</form>
</td>
</tr>
</table>
</td>
<td rowspan="2" class="TableCenter"></td>
<td width="206px" rowspan="2" valign="top">
<table cellpadding="0px" cellspacing="0px">
<tr>
<td><img src="images/last_played_match.gif" width="206px" height="36px" border="0px" alt="" /></td>
</tr>
<tr>
<td><div class="Right">last play</div></td>
</tr>
<tr>
<td><img src="images/next_match.gif" width="206px" height="36px" border="0px" alt="" /></td>
</tr>
<tr>
<td><div class="Right">Comming play<br />jhsdfsds.</div></td>
</tr>
<tr>
<td><img src="images/day_match.gif" width="206px" height="36px" border="0px" alt="" /></td>
</tr>
<tr>
<td><div class="Right">Today play<br />llæa</div></td>
</tr>
<tr>
<td><img src="images/sponsore.gif" width="206px" height="36px" border="0px" alt="" /></td>
</tr>
<tr>
<td><div class="Right">sponsor<br />hjhj</div></td>
</tr>
</table>
</td>
<td rowspan="2" class="TableRight"></td>
</tr>
<tr>
<td align="center" valign="bottom"></td>
</tr>
</table>
</body>
</html>