One more little snag,
I've noticed that after a successful log on to a secure area of the site, pages that should be available to me return the follow messege:
"An error occurred on the server when processing the URL. Please contact the system administrator."
The strange thing is, if I leave the browser window open for a few minutes, and then click on one of the links that returned the above messege, I am able to view the information without error.
These pages are grabbing information from an Access database on the web server using the follow code:
Dim Cnn,RS
Set Cnn = Server.CreateObject("ADODB.Connection"

Set RS = Server.CreateObject("ADODB.Recordset"

Cnn.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.Mappath("../Database/Order.mdb"

& ";"
Rs.Cursorlocation=3
Rs.Open "SELECT RawData,OrderID FROM RawOrders Where Status=FALSE",Cnn,0,3
Set Rs.ActiveConnection=Nothing
Cnn.Close
The information being stored above is then being used and formatted as follows:
-----------------------------
Begin Section 1:
Y=0
Rs.MoveFirst
While Not RS.EOF
'Ignore test orders
CurrentOrder = RS("RawData"

+vbCr
if (instr(1,CurrentOrder,"TestOrder"

= 0) then
Response.Write("<input type=checkbox value=" & RS("OrderID"

& " name=" & RS("OrderID"

& ">" & RS("OrderID"

& vbCr)
Y=Y+1
end if
RS.MoveNext
Wend
End Section 1:
-----------------------------
-----------------------------
Begin Section 2:
CurrentOrder=""
Y=0
Rs.MoveFirst
While Not RS.EOF
CurrentOrder = RS("RawData"

+vbCr
if (instr(1,CurrentOrder,"TestOrder"

= 0) then
Response.Write(CurrentOrder)
end if
Y=Y+1
RS.MoveNext
Wend
RS.Close
End Section 2:
-----------------------------
I appreciate the time you've already taken to read through this, and would be appreciative of any help/pointers/links or suggestions given on this. Again, thank you.