Click to See Complete Forum and Search --> : ASP pages not working


dthatsme
09-12-2008, 12:04 PM
I created a high school football website for the newspaper that I work for. The rosters have an ASP page for each school with a card that pops up for each player. The info is stored in a database. The pages seem to appear randomly, as do the cards. I'll refresh the page about ten times and it will finally come up. Very strange.

I get a line error and the code is this:
rsButler_cmd.ActiveConnection = MM_Gridiron_STRING

The connection is this:
Dim MM_Gridiron_STRING
MM_Gridiron_STRING = "dsn=Gridiron;"
%>

Here is a direct link to the page: http://video.butlereagle.com/gridiron/rosters.html

I am using Access and the connection made on the server to the database.

This is the second year for this project with no changes to the code. Just the player information. It was working the first year. That's why I'm stumped as to what the problem could be.

Any help is appreciated! TIA

Bullschmidt
09-15-2008, 07:22 PM
I suppose your .asp page is within a frame of the .html page.

Towared the top of the .asp page perhaps put somthing like this:
<%
Response.Expires = -1000 ' Make browser not cache pg.
%>