Forum Moderators: open
ASP page was open on host server, page was hung up so I closed the browser. Probably didn't get to the conn and rs close statements at bottom. Now site won't open, everything says to reset server, how its not mine.
ASP:
open Access db connection
create three record sets
do a lot of stuff (loops...if/then...etc)
(I am guessing I closed the browser somewhere in here)
close rs
close db conn
HELP! and thanks.
Line21-24
21) 'Open Database
22) Set adoCon = Server.CreateObject("ADODB.Connection")
23) strCon = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("database\master_oak.mdb")
24) adoCon.Open strCon