Link to home
Start Free TrialLog in
Avatar of RickyGtz
RickyGtz

asked on

Designer help , improve look on main page.

Multiple points for assistance improving this page, make it look better , tables spaces, etc.. Hope someon can help me . I am not really a designer but a programmer, .. Thanks

*zone changed by Netminder 31 Jan 2009*
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<% level="../"%>
<!--#include file="../../Connections/sqlConn1.asp" -->
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers=""
MM_authFailedURL="../index.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
  If (true Or CStr(Session("MM_UserAuthorization"))="") Or _
         (InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
    MM_grantAccess = true
  End If
End If
If Not MM_grantAccess Then
  MM_qsChar = "?"
  If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
  MM_referrer = Request.ServerVariables("URL")
  if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
  MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
  Response.Redirect(MM_authFailedURL)
End If
%>
<%
Dim rsTournament
Dim rsTournament_cmd
Dim rsTournament_numRows
 
Set rsTournament_cmd = Server.CreateObject ("ADODB.Command")
rsTournament_cmd.ActiveConnection = MM_sqlConn1_STRING
rsTournament_cmd.CommandText = "SELECT TourID, TourName, TourStartdate, TourLocation, AvailableSpots, CourseID, TournamentFormat FROM dbo.tblTournament" 
rsTournament_cmd.Prepared = true
 
Set rsTournament = rsTournament_cmd.Execute
rsTournament_numRows = 0
%>
<%
Dim rsLeague
Dim rsLeague_cmd
Dim rsLeague_numRows
 
Set rsLeague_cmd = Server.CreateObject ("ADODB.Command")
rsLeague_cmd.ActiveConnection = MM_sqlConn1_STRING
rsLeague_cmd.CommandText = "SELECT * FROM dbo.League where SSN = '"&Session("MM_Username")&"' " 
rsLeague_cmd.Prepared = true
 
Set rsLeague = rsLeague_cmd.Execute
rsLeague_numRows = 0
 
LeagueID = rsLeague("LeagueID")
 
%>
<%
Dim rsMessage
Dim rsMessage_cmd
Dim rsMessage_numRows
 
Set rsMessage_cmd = Server.CreateObject ("ADODB.Command")
rsMessage_cmd.ActiveConnection = MM_sqlConn1_STRING
rsMessage_cmd.CommandText = "SELECT MessageID, GolferID, Subject, Message, MessageTime, Email, Phone, FirstName, LastName,MessageDate FROM dbo.LeagueMessage WHERE LeagueID = '"&LeagueID&"'" 
rsMessage_cmd.Prepared = true
 
Set rsMessage = rsMessage_cmd.Execute
rsMessage_numRows = 0
%>
<%
Dim rsPlayer__MMColParam
rsPlayer__MMColParam = "1"
If (Session("MM_Username") <> "") Then 
  rsPlayer__MMColParam = Session("MM_Username")
End If
%>
<%
Dim rsPlayer
Dim rsPlayer_cmd
Dim rsPlayer_numRows
 
Set rsPlayer_cmd = Server.CreateObject ("ADODB.Command")
rsPlayer_cmd.ActiveConnection = MM_sqlConn1_STRING
rsPlayer_cmd.CommandText = "SELECT ID, SSN, LastName, FirstName, Password, courseID, TourID, Handicap, GoldMember, SilverMember, BronzeMember FROM dbo.Players WHERE SSN = ?" 
rsPlayer_cmd.Prepared = true
rsPlayer_cmd.Parameters.Append rsPlayer_cmd.CreateParameter("param1", 200, 1, 15, rsPlayer__MMColParam) ' adVarChar
 
Set rsPlayer = rsPlayer_cmd.Execute
rsPlayer_numRows = 0
%>
 
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 10
Repeat1__index = 0
rsTournament_numRows = rsTournament_numRows + Repeat1__numRows
%>
<%
Dim Repeat2__numRows
Dim Repeat2__index
 
Repeat2__numRows = 10
Repeat2__index = 0
rsTournament_numRows = rsTournament_numRows + Repeat2__numRows
%>
<%
 
Repeat1__numRows = 5
Repeat1__index = 0
rsMessage_numRows = rsMessage_numRows + Repeat1__numRows
%>
 
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin t&iacute;tulo</title>
<style type="text/css">
.style1 {
	margin-left: 0px;
}
.newStyle1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-weight: normal;
	color: #000000;
}
.style3 {
	border-collapse: collapse;
}
</style>
<script src="../../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.Estilo1 {font-family: Arial, Helvetica, sans-serif}
.Estilo6 {font-size: 10px}
.Estilo7 {color: #FF0000}
.style4 {
	font-size: x-small;
}
.style5 {
	color: #FF0000;
	font-size: x-small;
}
.style6 {
	font-size: xx-small;
}
-->
</style>
</head>
 
<body>
<p><img alt="logo" height="93" src="../newmembers/images/mp.GIF" width="350" /></p>
<ul class="MenuBarHorizontal Estilo1 Estilo6 Estilo6" id="MenuBar1">
  <li><a href="#">Home</a> </li>
  <li><a href="#" class="MenuBarItemSubmenu">League Info</a>
    <ul>
      <li><a href="addGolfer.asp?League=<%=LeagueID%>">Add Golfers</a></li>
      <li><a href="quickTeamAdd.asp">Add Teams</a></li>
      <li><a href="GolferList.asp?League=<%=LeagueID%>">League Members</a></li>
      <li><a href="memDir.asp?League=<%=LeagueID%>">Member Directory</a></li>
      <li><a href="viewScorecard.asp">Scorecard</a></li>
      <li><a href="#">Event Calendar</a></li>
      <li><a href="updateInfo.asp">Update  Info</a></li>
    </ul>
  </li>
  <li><a class="MenuBarItemSubmenu" href="#">Tournaments</a>
      <ul>
        <li><a href="#">Upcoming Tournaments</a> </li>
        <li><a href="leaderboard.asp" title="Leader Board">Leaderboard</a></li>
        <li><a href="myresults.asp">My Results</a></li>
    </ul>
  </li>
  <li><a href="scoresPost.asp?League=<%=LeagueID%>" class="MenuBarItemSubmenu">Post Scores</a>
    <ul>
      <li><a href="scoresPost.asp?League=<%=LeagueID%>">Post Scores</a></li>
      <li><a href="scoresStats.asp?League=<%=LeagueID%>">Review Scores</a></li>
      <li><a href="#">Index Lookup</a></li>
      <li><a href="#">View Reports</a></li>
    </ul>
  </li>
<li><a href="#" class="MenuBarItemSubmenu">Bulletin Board</a>
      <ul>
        <li><a href="?League=<%=LeagueID%>">Post Messages</a></li>
        <li><a href="#">Looking for players</a></li>
        <li><a href="#">Admin Messages</a></li>
      </ul>
  </li>
  <li><a href="../index.asp">Log Out</a></li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%"><table width="1278" height="923" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="100%">
		<table border="0" cellspacing="0" cellpadding="0" width="96%" class="newStyle1">
          <tr>
            <td width="26%" style="width: 29%"><p><strong>Hello <%=(rsLeague.Fields.Item("PlayerName").Value)%>! </strong></p></td>
            <td width="74%"><p align="right"><strong><%=(rsLeague.Fields.Item("LeagueName").Value)%> </strong></p></td>
          </tr>
          
          <tr>
            <td style="width: 29%"><p>League Administrator -<%=(rsLeague.Fields.Item("LeagueAdmin").Value)%></p></td>
            <td width="74%"><p align="right"><%=(rsLeague.Fields.Item("HostingClub").Value)%></p></td>
          </tr>
        </table>
		<p>&nbsp;</p></td>
      </tr>
      
      <tr>
        <td valign="top"><table width="1242" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td valign="top" style="width: 127px; 333:;">
			<table height="329" border="0" cellpadding="0" cellspacing="0" style="width: 408px; height: 349px">
              <tr>
                <td valign="top" class="newStyle1"><table border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                      <tr>
                        <td valign="top" bgcolor="#99CC66"><table border="0" cellspacing="0" cellpadding="0">
                          
                        </table>
                          <strong><span class="style4">Prize Center</span></strong></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%"><p><a href="javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions(%22ctl00$CPH1$g_PrizeCenter$lnkPrizeCenter%22,%20%22%22,%20false,%20%22%22,%20%22l_PrizeCenter.aspx%22,%20false,%20true))">
								<span class="style4">Click Here to view the latest winners.</span></a><span class="style4">
								</span> </p>
                                  <table width="387" border="0">
                                    <tr>
                                      <td valign="top" bgcolor="#99CC66"><table border="0" cellspacing="0" cellpadding="0">
                                        </table>
                                          <strong><span class="style4">Leader Board</span></strong></td>
                                    </tr>
                                    <tr>
                                      <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                          <tr>
                                            <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="168%">
                                                <tr>
                                                  <td width="100%"><p><a href="javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions(%22ctl00$CPH1$g_PrizeCenter$lnkPrizeCenter%22,%20%22%22,%20false,%20%22%22,%20%22l_PrizeCenter.aspx%22,%20false,%20true))"> 
												  <span class="style4">Click Here to view the latest winners.</span></a><span class="style4">
												  </span> </p></td>
                                                </tr>
                                            </table></td>
                                          </tr>
                                      </table></td>
                                    </tr>
                                  </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td valign="top">
					<table border="0" cellspacing="0" cellpadding="0" width="100%" class="style4">
                      <tr>
                        <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td valign="bottom"><p class="style4">&nbsp;</p></td>
                            <td width="100%" valign="bottom">
							<table border="0" cellspacing="0" cellpadding="0" width="100%" style="height: 40px">
                              <tr>
                                <td width="100%" valign="bottom"><strong>
								<br class="style4" />
								  </strong>
								  </td>
                              </tr>
                              <tr>
                                <td width="100%">
								<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#99CC66">
                                  <tr>
                                    <td><p class="style4"><strong>Message Board</strong></p></td>
                                    <td><div align="right">
                                      <table border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td><p><a href="postmsg.asp?League=<%=LeagueID%>">
										  <strong><span class="style4">Post Message&nbsp;</span></strong></a><strong><span class="style4">&nbsp;&nbsp; 
										  </span> 
										  </strong> </p></td>
                                        </tr>
                                      </table>
                                    </div></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                                     <td valign="bottom"><p><strong>
									 <img border="0" width="4" height="37" src="loggedmain_clip_image006_0000.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/section_header/section_header_06.gif" class="style4" /><span class="style4">
									 </span> 
									 </strong> </p></td>
                          </tr>
                        </table></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td width="100%"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                  <tr>
                                    <td width="100%"><table width="382" border="1" cellpadding="1" cellspacing="1">
                                      <tr>
                                        <td valign="top"><div id="ctl00_CPH1_g_ViewLSM_inline_pnlEntire">
                                            <table cellspacing="0" cellpadding="0" border="0">
                                              <tbody>
                                                
                                                <tr>
                                                  <td><div id="ctl00_CPH1_g_ViewLSM_inline_pnlContent">
                                                      <table cellspacing="0" cellpadding="0" border="0">
                                                        <tbody>
                                                          <tr>
                                                            <td><table cellspacing="0" cellpadding="0" border="0">
                                                                <tbody>
                                                                  <tr>
                                                                    <td valign="top" align="left" colspan="2"><div id="ctl00_CPH1_g_ViewLSM_inline_pnlPlay">
                                                                        <table cellspacing="0" cellpadding="0" border="0">
                                                                          <tbody>
                                                                            <tr>
                                                                              <td align="left"> <strong><span class="style4"> Golfer Messages</span></strong><span class="style4">
																			  </span> </td>
                                                                            </tr>
                                                                            <tr>
                                                                              <td><div id="ctl00_CPH1_g_ViewLSM_inline_pnlPlMsgs">
                                                                                  <table cellspacing="0" cellpadding="0" width="100%" border="0">
                                                                                    <tbody>
                                                                                    
                                                                                    </tbody>
                                                                                  </table>
                                                                              </div></td>
                                                                            </tr>
                                                                          </tbody>
                                                                        </table>
                                                                    </div></td>
                                                                  </tr>
                                                                </tbody>
                                                            </table></td>
                                                          </tr>
                                                        </tbody>
                                                      </table>
                                                  </div></td>
                                                </tr>
                                              </tbody>
                                            </table>
                                        </div></td>
                                      </tr>
                                      <tr>
                                        <td></td>
                                      </tr>
                                    </table>
                                      <table width="382" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td><% If rsMessage.EOF  Then %>&nbsp;    <strong class="style5">There are no messages to display</strong></td>
                                        </tr><% End If %> 
                                      </table>
                                      <table width="390" border="1" cellpadding="2" cellspacing="1">
 
                                        <% While ((Repeat1__numRows <> 0) AND (NOT rsMessage.EOF)) %>
                                          <tr>
                                            <td class="style4"><a href="ViewMsg.asp?MsgID=<%=rsMessage("MessageID")%>"><%=(rsMessage.Fields.Item("Subject").Value)%></a></td>
                                            <td><span class="style4"><%=(rsMessage.Fields.Item("FirstName").Value)%>, <%=(rsMessage.Fields.Item("LastName").Value)%>
											</span>-<span class="style4"><%=(rsMessage.Fields.Item("MessageDate").Value)%></span></td>
                                          </tr>
                                          <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  rsMessage.MoveNext()
Wend
%>
                                     </table>
                                  
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                  
                  <tr>
                    <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                      <tr>
                        <td valign="top"><table border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td valign="top"><p class="style4">&nbsp;</p></td>
                            <td width="100%" valign="bottom"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%" valign="bottom"></td>
                              </tr>
                              <tr>
                                <td width="100%">
								<table border="0" cellspacing="0" cellpadding="0" bgcolor="#99CC66" style="width: 212%">
                                  <tr>
                                    <td><p class="style4"><strong>League Schedule </strong> </p></td>
                                    <td><div align="right">
                                      <table border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td><p><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_PrSchedule.aspx" target="_blank"><strong>
										  <img border="0" width="22" height="15" src="loggedmain_clip_image007.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/printer.gif" class="style4" /></strong></a><span class="style4">
										  </span> </p></td>
                                        </tr>
                                      </table>
                                    </div></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                            
                          </tr>
                        </table></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="3" cellpadding="0" width="380">
                          <tr>
                            <td><table border="0" cellspacing="0" cellpadding="0">
                              <tr>
                                <td width="400" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="400">
                                  <tr>
                                    <td><p class="style4">No schedule exists. </p></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                </table>
                  <table border="0" style="height: 216px; width: 410px;">
                    <tr class="newStyle1">
                      <td bgcolor="#99CC66"><strong>Upcoming Tournaments</strong></td>
                    </tr>
                    <tr>
                      <td><table border="1" cellpadding="2" cellspacing="1">
                          <tr bgcolor="#99CC66" class="newStyle1">
                            <td>Tournament Name</td>
                            <td>Start Date</td>
                            <td>Location </td>
                            <td>Format</td>
                            <td>Spots Left</td>
                            <td>&nbsp;</td>
                          </tr>
                          <% While ((Repeat2__numRows <> 0) AND (NOT rsTournament.EOF)) %>
                            <tr>
                              <td class="style4"><%=(rsTournament.Fields.Item("TourName").Value)%></td>
                              <td class="style4"><%=(rsTournament.Fields.Item("TourStartdate").Value)%></td>
                              <td class="style4"><%=(rsTournament.Fields.Item("TourLocation").Value)%></td>
                              <td class="style4"><%=(rsTournament.Fields.Item("TournamentFormat").Value)%></td>
                              <td class="style4"><%=rsTournament("AvailableSpots").value %>&nbsp;</td>
                              <td class="style4"><a href="../Tournament/tour_detail.asp?TId=<%=rsTournament("TourID")%>">Join</a></td>
                            </tr>
                            <% 
  Repeat2__index=Repeat2__index+1
  Repeat2__numRows=Repeat2__numRows-1
  rsTournament.MoveNext()
Wend
%>
                        </table>
                        <p>
                          <span class="style4">
                          <% If rsTournament.BOF Then %>
                          </span>
                          <span class="style5">No Tournaments Exists</span>
                          <span class="style4">
                          <% End If %>
                          </span>
                        </p>
                        <p class="style4">&nbsp;</p>
                        <p class="style4">&nbsp;</p>                        </td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
            <td width="474" valign="top"><table border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td>
				<table width="511" border="0" cellpadding="0" cellspacing="0" class="style1" style="width: 163px; height: 557px">
                  <tr>
                    <td width="511" valign="top" class="newStyle1"><table border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td valign="top">
							<table border="0" cellspacing="0" cellpadding="0" width="100%" class="style1">
                              <tr>
                                <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                  <tr>
                                                                        <td width="100%" valign="bottom"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                       <tr>
                                        <td width="100%">
										<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#99CC66">
                                          <tr>
                                            <td style="width: 325px">
											<p class="newStyle1"><strong>League Setup - 
											</strong> <em><strong>Getting Started!</strong></em> </p></td>
                                            <td><div align="right">
                                              <table border="0" cellspacing="0" cellpadding="0">
                                                <tr>
                                                  <td><p><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/LeagueSeries/l_PrintSetupSteps.aspx" target="_blank"><strong>
												  <img border="0" width="22" height="15" src="loggedmain_clip_image007_0000.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/printer.gif" class="style4" /></strong></a><span class="style4">
												  </span> </p></td>
                                                </tr>
                                              </table>
                                            </div></td>
                                          </tr>
                                        </table></td>
                                      </tr>
                                    </table></td>
                              
                                  </tr>
                                </table></td>
                              </tr>
                              <tr>
                                <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                  <tr>
                                    <td width="100%" valign="top">
									<span class="style6">Follow the steps 
											listed below to complete the initial 
											setup of your league. </span>
									<br class="style4"></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
               
                  <tr class="newStyle1">
                    <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                      <tr>
                        <td valign="top"><table border="0" cellspacing="0" cellpadding="0">
                          <tr bgcolor="#99CC66">
                            <td valign="top"><p class="style4"><%=(rsLeague.Fields.Item("LeagueName").Value)%></p></td>
                            <td width="100%" valign="bottom">
							<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#99CC66">
                            
                              <tr>
                                <td width="100%">
								<table border="0" cellspacing="0" cellpadding="0" bgcolor="#99CC66" class="style3" style="width: 142%">
                                  <tr>
                                    <td><p><strong> <span class="style4">-  
									</span>  </strong> <span class="style4"> <%=(rsLeague.Fields.Item("HostingClub").Value)%>
									</span></p></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                            
                          </tr>
                        </table></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%"><table border="0" cellspacing="0" cellpadding="0" width="154%">
                                  <tr>
                                    <td colspan="2" valign="top">
									<p class="style4"><strong>
									League Status:</strong></p></td>
                                  </tr>
                                  <tr>
                                    <td colspan="2"><p align="center">
									<img border="0" width="1" height="1" src="loggedmain_clip_image001_0000.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/1x1_trans_image.gif" class="style4" /><span class="style4">
									</span> </p></td>
                                  </tr>
                                  <tr>
                                    <td valign="top"><p><strong>
									<span class="style4">Golfers:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="top" class="style6">
									<p class="style6">1 golfer has been 
									entered. 0 golfers have been paid for.</p></td>
                                  </tr>
                                  <tr>
                                    <td valign="top"><p><strong>
									<span class="style4">Subs:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="top" class="style6"><p><u>
									<span class="style6">0</span></u><span class="style6"> subs have been 
									entered. </span> </p></td>
                                  </tr>
                                  <tr>
                                    <td width="20%" valign="top">
									<p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6">1 total golfers and subs. </p></td>
                                  </tr>
                                  <tr>
                                    <td width="20%" valign="top"><p><strong>
									<span class="style4">Internet Activity:</span></strong><span class="style4">
									</span> </p></td>
                                    <td class="style6"><p class="style6">0 golfers and subs have logged in. </p></td>
                                  </tr>
                                  <tr>
                                    <td width="20%" valign="top">
									<p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6">0% current login rate. </p></td>
                                  </tr>
                                  <tr>
                                    <td valign="bottom"><p><strong>
									<span class="style4">Email:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="bottom" class="style6">
									<p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/LeagueSeries/l_SendPWEmail.aspx">
									Usernames and passwords. </a> </p></td>
                                  </tr>
                                  <tr>
                                    <td valign="bottom"><p><strong>
									<span class="style4">Print:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="bottom" class="style6">
									<p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/LeagueSeries/l_print_UNPW.aspx" target="_blank">
									Usernames and passwords. </a> </p></td>
                                  </tr>
                                  <tr>
                                    <td><p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_EmailLoginRpt.aspx?Rpt=1">
									Golfers with their email addresses. </a> </p></td>
                                  </tr>
                                  <tr>
                                    <td><p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_EmailLoginRpt.aspx?Rpt=2">
									Who has/hasn&#39;t logged in to the website. </a> </p></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table>
                      
                      <table width="486" height="135" border="1" cellpadding="1" cellspacing="0">
                        <tr>
                          <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                            <tr>
                              <td valign="top"><table width="416" border="0" cellpadding="0" cellspacing="0" bgcolor="#99CC66">
                                  <tr bgcolor="#99CC66">
                                    <td valign="top"><p>&nbsp;</p></td>
                                    <td width="100%" valign="bottom"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                        <tr>
                                          <td width="100%"><table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#CCFFCC">
                                              <tr>
                                                <td bgcolor="#99CC66"><p class="style4"><strong>Team 
                                                  Standings </strong> </p></td>
                                                <td bgcolor="#99CC66"><div align="right">
                                                    <table border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                        <td bgcolor="#99CC66"><p style="width: 149px"><a href="javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions(%22ctl00$CPH1$g_TeamStandings_InLine$LkbMaintainSplitSeason%22,%20%22%22,%20false,%20%22%22,%20%22../GolfLeagues/g_MaintainSeasons.aspx%22,%20false,%20true))"> <strong><span class="style4">Edit Seasons</span></strong></a><strong><span class="style4">&nbsp;&nbsp;&nbsp; </span> </strong> </p></td>
                                                        <td><p><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_PrintStandings.aspx" target="_blank"><strong> <img border="0" width="22" height="15" src="loggedmain_clip_image007_0001.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/printer.gif" class="style4" /></strong></a><strong><span class="style4"> </span> </strong> </p></td>
                                                      </tr>
                                                    </table>
                                                </div></td>
                                              </tr>
                                          </table></td>
                                        </tr>
                                    </table></td>
                                    <td valign="bottom"><p>&nbsp;</p></td>
                                    <td valign="bottom">&nbsp;</td>
                                    <td valign="bottom">&nbsp;</td>
                                    <td valign="bottom">&nbsp;</td>
                                  </tr>
                              </table></td>
                            </tr>
                            <tr>
                              <td><table border="0" cellspacing="3" cellpadding="0" style="width: 482px">
                                  <tr>
                                    <td><div align="center">
                                        <table border="0" cellspacing="0" cellpadding="0">
                                          <tr>
                                            <td width="100%"><div align="center">
                                                <table border="0" cellspacing="0" cellpadding="0">
                                                  <tr>
                                                    <td><p align="center"> <br class="style6" />
                                                            <strong> <span class="style6">Standings not available. No rounds have 
                                                              been calculated.</span></strong><span class="style4"> </span> </p></td>
                                                  </tr>
                                                </table>
                                            </div></td>
                                          </tr>
                                        </table>
                                    </div></td>
                                  </tr>
                                  <tr>
                                    <td><div align="center">
                                        <table border="0" cellspacing="0" cellpadding="0">
                                          <tr>
                                            <td width="100%"><div align="center">
                                                <table border="0" cellspacing="0" cellpadding="0">
                                                  <tr>
                                                    <td width="100%"></td>
                                                  </tr>
                                                </table>
                                            </div></td>
                                          </tr>
                                        </table>
                                    </div></td>
                                  </tr>
                                  <tr>
                                    <td><table border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td width="474" valign="top"></td>
                                        </tr>
                                    </table></td>
                                  </tr>
                              </table></td>
                            </tr>
                          </table></td>
                        </tr>
                      </table></td>
                  </tr>
                  <tr class="newStyle1">
                    <td valign="top">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td><p><br />
            <br />
    </p></td>
  </tr>
</table>
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../../SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
</body>
</html>
<%
rsTournament.Close()
Set rsTournament = Nothing
%>
<%
rsLeague.Close()
Set rsLeague = Nothing
%>
<%
rsMessage.Close()
Set rsMessage = Nothing
%>
<%
rsPlayer.Close()
Set rsPlayer = Nothing
%>

Open in new window

Avatar of RickyGtz
RickyGtz

ASKER

forgot this is the live page:

http://www.playerscores.net/Leagues/main.asp

and Html code is :

 
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin t&iacute;tulo</title>
<style type="text/css">
.style1 {
	margin-left: 0px;
}
.newStyle1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-weight: normal;
	color: #000000;
}
.style3 {
	border-collapse: collapse;
}
</style>
<script src="../../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">
 
<!--
.Estilo1 {font-family: Arial, Helvetica, sans-serif}
.Estilo6 {font-size: 10px}
.Estilo7 {color: #FF0000}
.style4 {
	font-size: x-small;
}
.style5 {
	color: #FF0000;
	font-size: x-small;
}
.style6 {
	font-size: xx-small;
}
-->
</style>
</head>
 
<body>
<p><img alt="logo" height="93" src="../newmembers/images/mp.GIF" width="350" /></p>
<ul class="MenuBarHorizontal Estilo1 Estilo6 Estilo6" id="MenuBar1">
  <li><a href="#">Home</a> </li>
  <li><a href="#" class="MenuBarItemSubmenu">League Info</a>
    <ul>
      <li><a href="addGolfer.asp?League=44">Add Golfers</a></li>
      <li><a href="quickTeamAdd.asp">Add Teams</a></li>
      <li><a href="GolferList.asp?League=44">League Members</a></li>
      <li><a href="memDir.asp?League=44">Member Directory</a></li>
      <li><a href="viewScorecard.asp">Scorecard</a></li>
      <li><a href="#">Event Calendar</a></li>
      <li><a href="updateInfo.asp">Update  Info</a></li>
    </ul>
  </li>
  <li><a class="MenuBarItemSubmenu" href="#">Tournaments</a>
      <ul>
        <li><a href="#">Upcoming Tournaments</a> </li>
        <li><a href="leaderboard.asp" title="Leader Board">Leaderboard</a></li>
        <li><a href="myresults.asp">My Results</a></li>
    </ul>
  </li>
  <li><a href="scoresPost.asp?League=44" class="MenuBarItemSubmenu">Post Scores</a>
    <ul>
      <li><a href="scoresPost.asp?League=44">Post Scores</a></li>
      <li><a href="scoresStats.asp?League=44">Review Scores</a></li>
      <li><a href="#">Index Lookup</a></li>
      <li><a href="#">View Reports</a></li>
    </ul>
  </li>
<li><a href="#" class="MenuBarItemSubmenu">Bulletin Board</a>
      <ul>
        <li><a href="?League=44">Post Messages</a></li>
        <li><a href="#">Looking for players</a></li>
        <li><a href="#">Admin Messages</a></li>
      </ul>
  </li>
  <li><a href="../index.asp">Log Out</a></li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%"><table width="1278" height="923" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="100%">
		<table border="0" cellspacing="0" cellpadding="0" width="96%" class="newStyle1">
          <tr>
            <td width="26%" style="width: 29%"><p><strong>Hello ricardo guti! </strong></p></td>
            <td width="74%"><p align="right"><strong>Taglerock </strong></p></td>
          </tr>
          
          <tr>
            <td style="width: 29%"><p>League Administrator -</p></td>
            <td width="74%"><p align="right">Club at Cimarron</p></td>
          </tr>
        </table>
		<p>&nbsp;</p></td>
      </tr>
      
      <tr>
        <td valign="top"><table width="1242" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td valign="top" style="width: 127px; 333:;">
			<table height="329" border="0" cellpadding="0" cellspacing="0" style="width: 408px; height: 349px">
              <tr>
                <td valign="top" class="newStyle1"><table border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                      <tr>
                        <td valign="top" bgcolor="#99CC66"><table border="0" cellspacing="0" cellpadding="0">
                          
                        </table>
                          <strong><span class="style4">Prize Center</span></strong></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%"><p><a href="javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions(%22ctl00$CPH1$g_PrizeCenter$lnkPrizeCenter%22,%20%22%22,%20false,%20%22%22,%20%22l_PrizeCenter.aspx%22,%20false,%20true))">
								<span class="style4">Click Here to view the latest winners.</span></a><span class="style4">
								</span> </p>
                                  <table width="387" border="0">
                                    <tr>
                                      <td valign="top" bgcolor="#99CC66"><table border="0" cellspacing="0" cellpadding="0">
                                        </table>
                                          <strong><span class="style4">Leader Board</span></strong></td>
                                    </tr>
                                    <tr>
                                      <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                          <tr>
                                            <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="168%">
                                                <tr>
                                                  <td width="100%"><p><a href="javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions(%22ctl00$CPH1$g_PrizeCenter$lnkPrizeCenter%22,%20%22%22,%20false,%20%22%22,%20%22l_PrizeCenter.aspx%22,%20false,%20true))"> 
												  <span class="style4">Click Here to view the latest winners.</span></a><span class="style4">
												  </span> </p></td>
                                                </tr>
                                            </table></td>
                                          </tr>
                                      </table></td>
                                    </tr>
                                  </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td valign="top">
					<table border="0" cellspacing="0" cellpadding="0" width="100%" class="style4">
                      <tr>
                        <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td valign="bottom"><p class="style4">&nbsp;</p></td>
                            <td width="100%" valign="bottom">
							<table border="0" cellspacing="0" cellpadding="0" width="100%" style="height: 40px">
                              <tr>
                                <td width="100%" valign="bottom"><strong>
								<br class="style4" />
								  </strong>
								  </td>
                              </tr>
                              <tr>
                                <td width="100%">
								<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#99CC66">
                                  <tr>
                                    <td><p class="style4"><strong>Message Board</strong></p></td>
                                    <td><div align="right">
                                      <table border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td><p><a href="postmsg.asp?League=44">
										  <strong><span class="style4">Post Message&nbsp;</span></strong></a><strong><span class="style4">&nbsp;&nbsp; 
										  </span> 
										  </strong> </p></td>
                                        </tr>
                                      </table>
                                    </div></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                                     <td valign="bottom"><p><strong>
									 <img border="0" width="4" height="37" src="loggedmain_clip_image006_0000.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/section_header/section_header_06.gif" class="style4" /><span class="style4">
									 </span> 
									 </strong> </p></td>
                          </tr>
                        </table></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td width="100%"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                  <tr>
                                    <td width="100%"><table width="382" border="1" cellpadding="1" cellspacing="1">
                                      <tr>
                                        <td valign="top"><div id="ctl00_CPH1_g_ViewLSM_inline_pnlEntire">
                                            <table cellspacing="0" cellpadding="0" border="0">
                                              <tbody>
                                                
                                                <tr>
                                                  <td><div id="ctl00_CPH1_g_ViewLSM_inline_pnlContent">
                                                      <table cellspacing="0" cellpadding="0" border="0">
                                                        <tbody>
                                                          <tr>
                                                            <td><table cellspacing="0" cellpadding="0" border="0">
                                                                <tbody>
                                                                  <tr>
                                                                    <td valign="top" align="left" colspan="2"><div id="ctl00_CPH1_g_ViewLSM_inline_pnlPlay">
                                                                        <table cellspacing="0" cellpadding="0" border="0">
                                                                          <tbody>
                                                                            <tr>
                                                                              <td align="left"> <strong><span class="style4"> Golfer Messages</span></strong><span class="style4">
																			  </span> </td>
                                                                            </tr>
                                                                            <tr>
                                                                              <td><div id="ctl00_CPH1_g_ViewLSM_inline_pnlPlMsgs">
                                                                                  <table cellspacing="0" cellpadding="0" width="100%" border="0">
                                                                                    <tbody>
                                                                                    
                                                                                    </tbody>
                                                                                  </table>
                                                                              </div></td>
                                                                            </tr>
                                                                          </tbody>
                                                                        </table>
                                                                    </div></td>
                                                                  </tr>
                                                                </tbody>
                                                            </table></td>
 
                                                          </tr>
                                                        </tbody>
                                                      </table>
                                                  </div></td>
                                                </tr>
                                              </tbody>
                                            </table>
                                        </div></td>
                                      </tr>
                                      <tr>
                                        <td></td>
                                      </tr>
                                    </table>
                                      <table width="382" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td> 
                                      </table>
                                      <table width="390" border="1" cellpadding="2" cellspacing="1">
 
                                        
                                          <tr>
                                            <td class="style4"><a href="ViewMsg.asp?MsgID=1">Sell Clubs</a></td>
                                            <td><span class="style4">Chuy, Pena
											</span>-<span class="style4">5/12/2008</span></td>
                                          </tr>
                                          
                                          <tr>
                                            <td class="style4"><a href="ViewMsg.asp?MsgID=2">Hi test 2</a></td>
                                            <td><span class="style4">Martin, CHapa
											</span>-<span class="style4"></span></td>
                                          </tr>
                                          
                                          <tr>
                                            <td class="style4"><a href="ViewMsg.asp?MsgID=4">Hello There</a></td>
                                            <td><span class="style4">Rick, Garcia
											</span>-<span class="style4"></span></td>
                                          </tr>
                                          
                                     </table>
                                  
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                  
                  <tr>
                    <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                      <tr>
                        <td valign="top"><table border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td valign="top"><p class="style4">&nbsp;</p></td>
                            <td width="100%" valign="bottom"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%" valign="bottom"></td>
                              </tr>
                              <tr>
                                <td width="100%">
								<table border="0" cellspacing="0" cellpadding="0" bgcolor="#99CC66" style="width: 212%">
                                  <tr>
                                    <td><p class="style4"><strong>League Schedule </strong> </p></td>
                                    <td><div align="right">
                                      <table border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td><p><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_PrSchedule.aspx" target="_blank"><strong>
										  <img border="0" width="22" height="15" src="loggedmain_clip_image007.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/printer.gif" class="style4" /></strong></a><span class="style4">
										  </span> </p></td>
                                        </tr>
                                      </table>
                                    </div></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                            
                          </tr>
                        </table></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="3" cellpadding="0" width="380">
                          <tr>
                            <td><table border="0" cellspacing="0" cellpadding="0">
                              <tr>
                                <td width="400" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="400">
                                  <tr>
                                    <td><p class="style4">No schedule exists. </p></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                </table>
                  <table border="0" style="height: 216px; width: 410px;">
                    <tr class="newStyle1">
                      <td bgcolor="#99CC66"><strong>Upcoming Tournaments</strong></td>
                    </tr>
                    <tr>
                      <td><table border="1" cellpadding="2" cellspacing="1">
                          <tr bgcolor="#99CC66" class="newStyle1">
                            <td>Tournament Name</td>
                            <td>Start Date</td>
                            <td>Location </td>
                            <td>Format</td>
                            <td>Spots Left</td>
                            <td>&nbsp;</td>
                          </tr>
                          
                            <tr>
                              <td class="style4">Players Cup</td>
                              <td class="style4">3/4/2009</td>
                              <td class="style4">South Padre Island Golf Club</td>
                              <td class="style4">Individual</td>
                              <td class="style4">20&nbsp;</td>
                              <td class="style4"><a href="../Tournament/tour_detail.asp?TId=12">Join</a></td>
                            </tr>
                            
                            <tr>
                              <td class="style4">RIO GRANDE</td>
                              <td class="style4">7/15/2009</td>
                              <td class="style4">Club at Cimarron</td>
                              <td class="style4">Scramble</td>
                              <td class="style4">9&nbsp;</td>
                              <td class="style4"><a href="../Tournament/tour_detail.asp?TId=13">Join</a></td>
                            </tr>
                            
                            <tr>
                              <td class="style4">Sonics</td>
                              <td class="style4">4/8/2009</td>
                              <td class="style4">McAllen Country Club</td>
                              <td class="style4">4-Man</td>
                              <td class="style4">7&nbsp;</td>
                              <td class="style4"><a href="../Tournament/tour_detail.asp?TId=14">Join</a></td>
                            </tr>
                            
                        </table>
                        <p>
                          <span class="style4">
                          
                          </span>
                        </p>
                        <p class="style4">&nbsp;</p>
                        <p class="style4">&nbsp;</p>                        </td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
            <td width="474" valign="top"><table border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td>
				<table width="511" border="0" cellpadding="0" cellspacing="0" class="style1" style="width: 163px; height: 557px">
                  <tr>
                    <td width="511" valign="top" class="newStyle1"><table border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td valign="top">
							<table border="0" cellspacing="0" cellpadding="0" width="100%" class="style1">
                              <tr>
                                <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                  <tr>
                                                                        <td width="100%" valign="bottom"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                       <tr>
                                        <td width="100%">
										<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#99CC66">
                                          <tr>
                                            <td style="width: 325px">
											<p class="newStyle1"><strong>League Setup - 
											</strong> <em><strong>Getting Started!</strong></em> </p></td>
                                            <td><div align="right">
                                              <table border="0" cellspacing="0" cellpadding="0">
                                                <tr>
                                                  <td><p><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/LeagueSeries/l_PrintSetupSteps.aspx" target="_blank"><strong>
												  <img border="0" width="22" height="15" src="loggedmain_clip_image007_0000.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/printer.gif" class="style4" /></strong></a><span class="style4">
												  </span> </p></td>
                                                </tr>
                                              </table>
                                            </div></td>
                                          </tr>
                                        </table></td>
                                      </tr>
                                    </table></td>
                              
                                  </tr>
                                </table></td>
                              </tr>
                              <tr>
                                <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                  <tr>
                                    <td width="100%" valign="top">
									<span class="style6">Follow the steps 
											listed below to complete the initial 
											setup of your league. </span>
									<br class="style4"></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
               
                  <tr class="newStyle1">
                    <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                      <tr>
                        <td valign="top"><table border="0" cellspacing="0" cellpadding="0">
                          <tr bgcolor="#99CC66">
                            <td valign="top"><p class="style4">Taglerock</p></td>
                            <td width="100%" valign="bottom">
							<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#99CC66">
                            
                              <tr>
                                <td width="100%">
								<table border="0" cellspacing="0" cellpadding="0" bgcolor="#99CC66" class="style3" style="width: 142%">
                                  <tr>
                                    <td><p><strong> <span class="style4">-  
									</span>  </strong> <span class="style4"> Club at Cimarron
									</span></p></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                            
                          </tr>
                        </table></td>
                      </tr>
                      <tr>
                        <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                          <tr>
                            <td width="100%" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                              <tr>
                                <td width="100%"><table border="0" cellspacing="0" cellpadding="0" width="154%">
                                  <tr>
                                    <td colspan="2" valign="top">
									<p class="style4"><strong>
									League Status:</strong></p></td>
                                  </tr>
                                  <tr>
                                    <td colspan="2"><p align="center">
									<img border="0" width="1" height="1" src="loggedmain_clip_image001_0000.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/1x1_trans_image.gif" class="style4" /><span class="style4">
									</span> </p></td>
                                  </tr>
                                  <tr>
                                    <td valign="top"><p><strong>
									<span class="style4">Golfers:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="top" class="style6">
									<p class="style6">1 golfer has been 
									entered. 0 golfers have been paid for.</p></td>
                                  </tr>
                                  <tr>
                                    <td valign="top"><p><strong>
									<span class="style4">Subs:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="top" class="style6"><p><u>
									<span class="style6">0</span></u><span class="style6"> subs have been 
									entered. </span> </p></td>
                                  </tr>
                                  <tr>
                                    <td width="20%" valign="top">
									<p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6">1 total golfers and subs. </p></td>
                                  </tr>
                                  <tr>
                                    <td width="20%" valign="top"><p><strong>
									<span class="style4">Internet Activity:</span></strong><span class="style4">
									</span> </p></td>
                                    <td class="style6"><p class="style6">0 golfers and subs have logged in. </p></td>
                                  </tr>
                                  <tr>
                                    <td width="20%" valign="top">
									<p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6">0% current login rate. </p></td>
                                  </tr>
                                  <tr>
                                    <td valign="bottom"><p><strong>
									<span class="style4">Email:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="bottom" class="style6">
									<p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/LeagueSeries/l_SendPWEmail.aspx">
									Usernames and passwords. </a> </p></td>
                                  </tr>
                                  <tr>
                                    <td valign="bottom"><p><strong>
									<span class="style4">Print:</span></strong><span class="style4">
									</span> </p></td>
                                    <td valign="bottom" class="style6">
									<p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/LeagueSeries/l_print_UNPW.aspx" target="_blank">
									Usernames and passwords. </a> </p></td>
                                  </tr>
                                  <tr>
                                    <td><p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_EmailLoginRpt.aspx?Rpt=1">
									Golfers with their email addresses. </a> </p></td>
                                  </tr>
                                  <tr>
                                    <td><p class="style4">&nbsp;</p></td>
                                    <td class="style6"><p class="style6"><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_EmailLoginRpt.aspx?Rpt=2">
									Who has/hasn&#39;t logged in to the website. </a> </p></td>
                                  </tr>
                                </table></td>
                              </tr>
                            </table></td>
                          </tr>
                        </table></td>
                      </tr>
                    </table>
                      
                      <table width="486" height="135" border="1" cellpadding="1" cellspacing="0">
                        <tr>
                          <td><table border="0" cellspacing="0" cellpadding="0" width="100%">
                            <tr>
                              <td valign="top"><table width="416" border="0" cellpadding="0" cellspacing="0" bgcolor="#99CC66">
                                  <tr bgcolor="#99CC66">
                                    <td valign="top"><p>&nbsp;</p></td>
                                    <td width="100%" valign="bottom"><table border="0" cellspacing="0" cellpadding="0" width="100%">
                                        <tr>
                                          <td width="100%"><table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#CCFFCC">
                                              <tr>
                                                <td bgcolor="#99CC66"><p class="style4"><strong>Team 
                                                  Standings </strong> </p></td>
                                                <td bgcolor="#99CC66"><div align="right">
                                                    <table border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                        <td bgcolor="#99CC66"><p style="width: 149px"><a href="javascript:WebForm_DoPostBackWithOptions(new%20WebForm_PostBackOptions(%22ctl00$CPH1$g_TeamStandings_InLine$LkbMaintainSplitSeason%22,%20%22%22,%20false,%20%22%22,%20%22../GolfLeagues/g_MaintainSeasons.aspx%22,%20false,%20true))"> <strong><span class="style4">Edit Seasons</span></strong></a><strong><span class="style4">&nbsp;&nbsp;&nbsp; </span> </strong> </p></td>
                                                        <td><p><a href="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Webforms/GolfLeagues/g_PrintStandings.aspx" target="_blank"><strong> <img border="0" width="22" height="15" src="loggedmain_clip_image007_0001.gif" alt="http://www.migolfleague.com/(S(srz2ys555ygr5s55aq5ebg45))/Systems/Graphics/General/printer.gif" class="style4" /></strong></a><strong><span class="style4"> </span> </strong> </p></td>
                                                      </tr>
                                                    </table>
                                                </div></td>
                                              </tr>
                                          </table></td>
                                        </tr>
                                    </table></td>
                                    <td valign="bottom"><p>&nbsp;</p></td>
                                    <td valign="bottom">&nbsp;</td>
                                    <td valign="bottom">&nbsp;</td>
                                    <td valign="bottom">&nbsp;</td>
                                  </tr>
                              </table></td>
                            </tr>
                            <tr>
                              <td><table border="0" cellspacing="3" cellpadding="0" style="width: 482px">
                                  <tr>
                                    <td><div align="center">
                                        <table border="0" cellspacing="0" cellpadding="0">
                                          <tr>
                                            <td width="100%"><div align="center">
                                                <table border="0" cellspacing="0" cellpadding="0">
                                                  <tr>
                                                    <td><p align="center"> <br class="style6" />
                                                            <strong> <span class="style6">Standings not available. No rounds have 
                                                              been calculated.</span></strong><span class="style4"> </span> </p></td>
                                                  </tr>
                                                </table>
                                            </div></td>
                                          </tr>
                                        </table>
                                    </div></td>
                                  </tr>
                                  <tr>
                                    <td><div align="center">
                                        <table border="0" cellspacing="0" cellpadding="0">
                                          <tr>
                                            <td width="100%"><div align="center">
                                                <table border="0" cellspacing="0" cellpadding="0">
                                                  <tr>
                                                    <td width="100%"></td>
                                                  </tr>
                                                </table>
                                            </div></td>
                                          </tr>
                                        </table>
                                    </div></td>
                                  </tr>
                                  <tr>
                                    <td><table border="0" cellspacing="0" cellpadding="0">
                                        <tr>
                                          <td width="474" valign="top"></td>
                                        </tr>
                                    </table></td>
                                  </tr>
                              </table></td>
                            </tr>
                          </table></td>
                        </tr>
                      </table></td>
                  </tr>
                  <tr class="newStyle1">
                    <td valign="top">&nbsp;</td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td><p><br />
            <br />
    </p></td>
  </tr>
</table>
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../../SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
</body>
</html>
 <font face="Arial" size=2>
<p>Microsoft VBScript runtime </font> <font face="Arial" size=2>error '800a01a8'</font>
<p>
<font face="Arial" size=2>Object required: ''</font>
<p>
<font face="Arial" size=2>/Leagues/main.asp</font><font face="Arial" size=2>, line 722</font> 

Open in new window

Avatar of Wayne Barron
Your main page's Background flickers in IE6 during Scrolling.
Ohh
The link that you have up has an error on it:

ADODB.Field error '800a0bcd'

Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

/Leagues/main.asp, line 30
RickyGtz,

The page won't load on its own:

ADODB.Field error '800a0bcd'

Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

/Leagues/main.asp, line 30

See http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14846 for an explanation. I'm guessing there's another page you actually want us to look at...

OR...

Please change the extensions on the following files and upload them:
SpryMenuBar.js
SpryMenuBarHorizontal.css

It also wouldn't hurt to upload the following:
mp.GIF
loggedmain_clip_image006_0000.gif
loggedmain_clip_image001_0000.gif

Finally, the following appears outside of your </html> tag (at the bottom of your code snippet). Is it supposed to be someplace else? If so, where?

 <font face="Arial" size=2>
<p>Microsoft VBScript runtime </font> <font face="Arial" size=2>error '800a01a8'</font>
<p>
<font face="Arial" size=2>Object required: ''</font>
<p>
<font face="Arial" size=2>/Leagues/main.asp</font><font face="Arial" size=2>, line 722</font>

Let's work on getting this cleaned up, and then we can work on your styling. Is this an instance of where you want someone to do the work for you? Or are you trying to learn how CSS works?

ep


Why does he need to change the extensions of these for?
SpryMenuBar.js
SpryMenuBarHorizontal.css

There is nothing wrong with them.
I downloaded them with no problems..
ericpete,

That code is an error message from the live page appended by the server.  

-------------

RickyGtz,

I assume the live page needs a query string parameter passed to it or a value from a logged in user in order to display the records in the repeat region?  That's why we are all getting errors.   Since we do have the basic HTML structure, perhaps posting a screenshot of the page will be enough information for us to help you.

Aside from that, what do *YOU* think should be done to the page to make it look better?  What don't you like about it currently?  A little extra direction from you will go a long way in helping us help you.
I'd love to help but can't see the page... will monitor this to see what happens.

designer, not programmer...:)
SOLUTION
Avatar of v2Media
v2Media
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I know that there are Errors on the page v2Media
It was a rough draft.
Anyone can tell that just by looking at it.
RickyGtz,

  The code page that I used in the example that I have up, was taking from your Main page.
You really need to do some cleaning on that site.

Thanks v2Media for pointing out the errors on the page.
Like I mentioned, It was a rough draft put together in about 15 minutes and posted here.

RickyGtz,
Do not use a lot of CAPITAL letters in your source code
Example:
<TITLE>
<META>
<HEAD>
and on and on an on.
It is best to use <title><head><meta>

Have a good one.
Hi guys, I remove some of the coding that gave error to allow you tho see the Html ,part,.,, please go again and check

http://www.playerscores.net/Leagues/main.asp

I want help how to fit this better on screen, how distribute the tables, borders, flash..

Thanks
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Ricky.
Did you look at what I sent over?
Do you want something like that, or do you want it to be different?
RickyGtz,

How is it that your home page looks as good as it does, and now you need help with a subfolder's page?

It looks like you're using Dreamweaver (which explains why Netminder moved it), but it also looks like you're not trying to fix or understand anything -- you're just throwing it out there and letting everyone else do your work for you.

carrzkiss is a lot braver than most people; when I looked at the one page I could get to, I had this "where do I start" feeling, because you haven't given us anything to say "this is what I think it's doing wrong". You haven't said what you want and don't want. You haven't said what you have tried and what you haven't.

Experts Exchange isn't about getting a bunch of people to do your project for you; its about people helping YOU do your project.

carrzkiss,

I like doing things locally (as opposed to uploading them as you did) -- not a complaint, just a personal preference. I also like knowing what the asker does and doesn't know about what he's trying to do. I also don't think any of us should have to go wandering through caches, etc to find files that are integral to a page. Call it being old fashioned -- but I assume that to a certain extent, web development is your "paying job", so you shouldn't be asked to completely redesign a whole set of pages for a t-shirt while the asker pays $13 a month. It's like asking your next-door-neighbor the electrician to completely rewire your house two days after he moves into the neighborhood, all for a couple of beers.

Add to that the MM_authorizedUsers=""  etc. in his first post and the creation of a gazillion tables that don't seem necessary (to me) -- and I don't think we're getting the whole story here. If, as v2Media and you both note, there are 200+ errors reported, then it's a sure bet that there's a lot more to this than the Asker realizes. I can say "open a text editor and do XYZ", and he's going to go "huh?". You might even have DW and can open the whole set of files -- but as soon as he adds another page, he's going to be right back here asking us to make it look like the one we just fixed.

Better that he figure out what he's not doing correctly the first time around, don't you think?

ep
I agree [ericpete:]
BUT.
I was not saying that I was wanting to do his entire page.
I stated: [Quote]I would have to have access to his main page to fix the errors there first, then redesign this page around the Main page[/Quote]

That is not saying that I WANT to do his page.
That is saying, that there is no need in ME fixing all the errors on the page that I had uploaded
In order to be [Accepted] here on this Post.
It is not worth the time to do it.

Anyway.
Have a good one all.
carrzkiss: Yes I did look at your suggestion and you are RIGHt, However, the hole page will change style and layout , to what I have   ,,, www.playerscores.com/template

so Thats why I am not keepiong the same format that old one...
Well dont wnat to make a page, just point out as Designer, more experience progammers, what can improve look, what html errors are, which you already recommend..
Well dont want someone to make me  a page , I really Don' t
Just amd advioce, and someon who points out as Designer, more experience progammers, what can improve look on my current page. what html errors are, use table, divs,, flash,  and so forth , which you already recommend..
ok
Good luck Ricky.
The site looks good so far.
Just need to do some revising on the code.
I am actually doing that very thing at this moment to another site.
Actually totally rebuilding using more CSS then I did before.

Good Luck
Carrzkiss
Glad we could help.
And to v2Media
Thank you for the link, as I had forgotten all about that site.
I am nearing completion on the main site right now, with NO ERRORS!
Love it.

have a good one ya.
Carrzkiss