Yesterday's ASP question
For those of you who were on tenterhooks wondering what the error in yesterday's ASP question was, you can rest assures that it was not, in fact, anything you suggested, but due to either SQL Server or ASP not liking numbers as the first characters in a table name. Simply renaming the table from "2005FallSurvey" to "FallSurvey2005" in both SQL Server and the script made it work.
*headdesk*
*headdesk*
no subject
no subject
I suppose I could name all the tables things like "Survey2005Fall" Or, since this particular database is nothing *but* surveys, "Library2005Fall" and "IC2005Spring" just to keep the library and Information Commons surveys separate.
no subject
no subject
Now all I have to do is figure out how to keep people from resubmitting the survey. I've got a redirect to a thankyou page so they can't refresh the page and resubmit, and using the Back button and then the Forward button doesn't resubmit either, but the Back button and then deliberately clicking the Submit button again will resubmit it.
I can, of course go trhough teh table in SQL Server and pull out duplicate entries and delete one, but I've got enough time left before it has to go live to code on it, so I'd prefer to do something that would eliminate duplicates entirely.