Web Design and Development Forums

Databases?

This is a discussion on "Databases?" within the ASP Forum section. This forum, and the thread "Databases? are both part of the Program Your Website category.

Old Mar 25th, 2008, 01:51   #1 (permalink)
New Member
 
Join Date: Mar 2008
Location: No where in Particular
Posts: 1
Databases?

I know this must be annoying for veteran members, but I am a young, and inexperienced, person who is attempting to learn the bare necessities in asp in order to perform what is required of me. I am a high school student who was placed in charge of updating and maintaining a website at my school. I was wondering if anyone could tell me what the error is on the page I'm working with so I can display the statistics for the baseball team. Any help at all will be appreciated. I've been working on trying to figure out this problem on my own since the two teachers that could have helped me can't because one is a pure html teacher and the other hasn't used asp in a long time.

Code: Select all
<!-- #INCLUDE FILE="adovbs.inc" -->
<HTML>
<HEAD>
<TITLE>Simi Valley Pioneer Baseball - Stats</TITLE>
<META NAME="KEYWORDS" CONTENT="Pioneer Baseball, Simi Valley Pioneer Baseball,
Simi Valley Baseball, Simi Valley Highschool Baseball, Simi Baseball,
Simi Highschool Baseball, Simi High Baseball, Marmonte League">
<META NAME="DESCRIPTION" CONTENT="Simi Valley Pioneer Baseball - Stats">
<META NAME="COPYRIGHT" CONTENT="Copyright (c) 2007 by Simi Valley Pioneer Baseball, All Rights Reserved">
<META NAME="RATING" CONTENT="G">
<%
Dim objConn
Dim connStr
Dim strQuery
Dim rsMessageHitting
Dim rsMessagePitching
Dim rsMessageFielding
Set objConn = Server.CreateObject("ADODB.Connection")
connStr ="PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=" + Server.MapPath("Database/VarsityStats.mdb")
objConn.Open(connStr)
strQuery = "SELECT * FROM Hitting ORDER BY ID ASC"
Set rsMessageHitting = objConn.Execute(strQuery)
strQuery = "SELECT * FROM Pitching ORDER BY ID ASC"
Set rsMessagePitching = objConn.Execute(strQuery)
strQuery = "SELECT * FROM Fielding ORDER BY ID ASC"
Set rsMessageFielding = objConn.Execute(strQuery)
%>
<STYLE>
<!--
A.Menu:link { color: #650000;text-decoration: none; }
A.Menu:visited { color: #650000;text-decoration: none; }
A.Menu:hover { color: #FFFFFF;text-decoration: none; }
A.SideBar:link img { color: #F8D307; border-color: #F8D307; text-decoration: none; }
A.SideBar:visited img { color: #F8D307; border-color: #F8D307; text-decoration: none; }
A.SideBar:hover img { color: #FFFFFF; border-color: #FFFFFF; text-decoration: none; }
A.SideBar:link { color: #F8D307;text-decoration: none; }
A.SideBar:visited { color: #F8D307;text-decoration: none; }
A.SideBar:hover { color: #FFFFFF;text-decoration: none; }
A.EMail:link { color: #000000;text-decoration: none; }
A.EMail:visited { color: #000000;text-decoration: none; }
A.EMail:hover { color: #650000;text-decoration: none; }
table.sortable a.sortheader {
background-color:#650000;
color:#FFFFFF;
font-weight: bold;
text-decoration: none;
display: block;
}
table.sortable span.sortarrow {
color: #FFFFFF;
text-decoration: none;
}
-->
</STYLE>
<SCRIPT SRC="JavaScript/SortTable.js"></SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" BACKGROUND="Images/SVHSBG.jpg" BGPROPERTIES="FIXED" TEXT="#650000" STYLE="FONT-FAMILY: Times New Roman">
<CENTER>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" STYLE="FONT-SIZE: 30pt; FONT-FAMILY: Times New Roman; FONT-WEIGHT: bold">
<TR>
<TD ALIGN="CENTER">Simi Valley Pioneer Baseball</TD>
</TR><TR>
<TD ALIGN="CENTER" STYLE="FONT-SIZE: 15pt">'Ya Gotta Believe'</TD>
</TR>
</TABLE>
<BR>
<SCRIPT LANGUAGE="JavaScript" SRC="JavaScript/Menu.js"></SCRIPT>
<BR>
<TABLE BORDER="1" WIDTH="100%" CELLSPACING="0" CELLPADDING="10" STYLE="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; BORDERCOLOR="#650000">
<TR>
<TD ROWSPAN="3" WIDTH="170" ALIGN="CENTER" VALIGN="TOP" BGCOLOR="#650000" STYLE="FONT-SIZE: 14pt; COLOR: #F8D307">
<U>Select Stat</U><BR><BR>
<A HREF="Stats.asp#Hitting" CLASS="SideBar">Hitting</A><BR><BR>
<A HREF="Stats.asp#Pitching" CLASS="SideBar">Pitching</A><BR><BR>
<A HREF="Stats.asp#Fielding" CLASS="SideBar">Fielding</A>
</TD>
<TD ALIGN="CENTER" VALIGN="TOP">
<A NAME="Hitting"></A>
<P ALIGN="CENTER" STYLE="FONT-FAMILY: Times New Roman; FONT-SIZE: 18pt; FONT-WEIGHT: bold; COLOR: #650000">2007 Hitting - Final</P>
<TABLE BORDER="1" CELLSPACING="2" CELLPADDING="2" CLASS="sortable" ID="Hitting" STYLE="FONT-SIZE: 10pt; FONT-FAMILY: Verdana" BGCOLOR="#F8D307" BORDERCOLOR="#000000">
<TR>
<TH>Player</TH>
<TH>G</TH>
<TH>AB</TH>
<TH>R</TH>
<TH>H</TH>
<TH>2B</TH>
<TH>3B</TH>
<TH>HR</TH>
<TH>RBI</TH>
<TH>BB</TH>
<TH>SO</TH>
<TH>SB</TH>
<TH>CS</TH>
<TH>OBP</TH>
<TH>SLG</TH>
<TH>AVG</TH>
</TR>
<%
rsMessageHitting.MoveFirst 
While Not rsMessageHitting.EOF
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("<TR CLASS='sortbottom'>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("<TR>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("Player")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("G")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("AB")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("R")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("H")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("2B")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("3B")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("HR")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("RBI")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("BB")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("SO")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("SB")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageHitting("CS")%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=FormatNumber(rsMessageHitting("OBP"),3)%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=FormatNumber(rsMessageHitting("SLG"),3)%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=FormatNumber(rsMessageHitting("AVG"),3)%><%
if rsMessageHitting("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"</TR>")
else
Response.Write("</TD>"+vbNewLine+"</TR>")
end if
rsMessageHitting.MoveNext 
Wend
%>
</TR>
</TABLE>
</TD>
</TR><TR>
<TD ALIGN="CENTER" VALIGN="TOP">
<A NAME="Pitching"></A>
<P ALIGN="CENTER" STYLE="FONT-FAMILY: Times New Roman; FONT-SIZE: 18pt; FONT-WEIGHT: bold; COLOR: #650000">2007 Pitching - Final</P>
<TABLE BORDER="1" CELLSPACING="2" CELLPADDING="2" CLASS="sortable" ID="Pitching" STYLE="FONT-SIZE: 10pt; FONT-FAMILY: Verdana" BGCOLOR="#F8D307" BORDERCOLOR="#000000">
<TR>
<TH>Player</TH>
<TH>W</TH>
<TH>L</TH>
<TH>ERA</TH>
<TH>GP</TH>
<TH>GS</TH>
<TH>CG</TH>
<TH>SHO</TH>
<TH>SV</TH>
<TH>IP</TH>
<TH>H</TH>
<TH>R</TH>
<TH>ER</TH>
<TH>HR</TH>
<TH>HBP</TH>
<TH>BB</TH>
<TH>SO</TH>
</TR>
<%
rsMessagePitching.MoveFirst 
While Not rsMessagePitching.EOF
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("<TR CLASS='sortbottom'>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("<TR>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("Player")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("W")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("L")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=FormatNumber(rsMessagePitching("ERA"),2)%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("GP")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("GS")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("CG")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("SHO")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("SV")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=FormatNumber(rsMessagePitching("IP"),2)%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("H")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("R")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("ER")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("HR")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("HBP")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("BB")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessagePitching("SO")%><%
if rsMessagePitching("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"</TR>")
else
Response.Write("</TD>"+vbNewLine+"</TR>")
end if
rsMessagePitching.MoveNext 
Wend
%>
</TR>
</TABLE>
</TD>
</TR><TR>
<TD ALIGN="CENTER" VALIGN="TOP">
<A NAME="Fielding"></A>
<P ALIGN="CENTER" STYLE="FONT-FAMILY: Times New Roman; FONT-SIZE: 18pt; FONT-WEIGHT: bold; COLOR: #650000">2007 Fielding - Final</P>
<TABLE BORDER="1" CELLSPACING="2" CELLPADDING="2" CLASS="sortable" ID="Fielding" STYLE="FONT-SIZE: 10pt; FONT-FAMILY: Verdana" BGCOLOR="#F8D307" BORDERCOLOR="#000000">
<TR>
<TH>Player</TH>
<TH>G</TH>
<TH>Inn</TH>
<TH>PO</TH>
<TH>Asst</TH>
<TH>EF</TH>
<TH>ET</TH>
<TH>Errors</TH>
<TH>Field%</TH>
<TH>PB</TH>
<TH>CS</TH>
<TH>SB</TH>
</TR>
<%
rsMessageFielding.MoveFirst 
While Not rsMessageFielding.EOF
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("<TR CLASS='sortbottom'>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("<TR>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("Player")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("G")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("Inn")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("PO")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("Asst")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD><TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("EF")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("ET")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("Errors")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=FormatNumber(rsMessageFielding("Field%"),3)%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("PB")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("CS")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"<TD ALIGN='CENTER'><B>")
else
Response.Write("</TD>"+vbNewLine+"<TD ALIGN='CENTER'>")
end if
%><%=rsMessageFielding("SB")%><%
if rsMessageFielding("Player") = "Total for Team" then
Response.Write("</B></TD>"+vbNewLine+"</TR>")
else
Response.Write("</TD>"+vbNewLine+"</TR>")
end if
rsMessageFielding.MoveNext 
Wend
%>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<% objConn.Close() %>
</CENTER>
</BODY>
</HTML>

Last edited by saltedm8; Mar 25th, 2008 at 10:15. Reason: added [code] tags
Apocalyptic Poet is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Apr 23rd, 2008, 12:24   #2 (permalink)
Up'n'Coming Member
 
Join Date: Sep 2007
Location: Wales, UK
Age: 35
Posts: 75
Send a message via MSN to robbied72 Send a message via Skype™ to robbied72
Re: Databases?

have you got a link to the error page?
__________________
Languages: ASP, RUBY(a little), XML, XHTML, CSS, JavaScript, JQuery - www.bizmo.co.uk
robbied72 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Merging databases!? marSoul MySQL 6 Oct 2nd, 2007 14:25
Forms and databases Antipody New to Web Design 1 Apr 30th, 2007 11:44
Populating databases DennisK PHP Forum 9 Nov 16th, 2006 15:55
Databases on Easily.co.uk Paula ASP Forum 2 Sep 21st, 2006 09:19
Access databases.... anyone know much? benbacardi MSSQL & Access 8 Jul 2nd, 2004 18:14



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 20:08.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59