Thank you for your response. Unfortunately, it did not work.
Configuration
Existing Website: Frontpage 6.0
Destination Website: FrontPage 2003 Extensions Installed
Developer Tool Used: FrontPage 2003
Steps Taken:
1.) I have cleared the destination website of all files, then reinstalled the FrontPage 2003 Extensions.
2.) I opened the existing website directly via the FTP option in FrontPage 2003.
3.) I then published the website from the existing website to the new website via HTTP within the FrontPage 2003 application.
4.) Tested. Did not work. So then I opened the destination website directly in FrontPage 2003 and performed the Site Settings / Recalculate procedure as outlined above.
The website published correctly and the site settings returned no errors, but still produced the HTTP 500 - Internal server error when accessing the ASP page containing a request from the MS Access database.
I am almost certain that the error is in the connection line of the below VBScript attached with the page in question. Unfortunately, rewriting the page is not really what I would like to do. Due to my limited knowledge of FrontPage 2003, I do not know how to add URL-passed parametes to a database query. There does not appear to be a way to do it. Here is the script currently in use:
<%@ LANGUAGE="VBSCRIPT" %>
<%
cString = ""
vStr = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Application("stuffdb")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open vStr
If Request.Form("kind") = "Plastic" Then
vSQL = "SELECT recno,series_des,category,model,model_desc,composition FROM stuffView WHERE composition = 'plastic'"
IF Request.Form("R1") = "Residential" Then
vSQL = vSQL + " AND category LIKE '%Residential%' "
ELSEIF Request.Form("R1") = "Commercial" Then
vSQL = vSQL + " AND category LIKE '%Commercial%' "
ELSEIF Request.Form("R1") = "Healthcare" Then
vSQL = vSQL + " AND category LIKE '%Healthcare%' "
ELSEIF Request.Form("R1") = "Decorative" Then
vSQL = vSQL + " AND category LIKE '%Decorative%' "
ELSEIF Request.Form("R1") = "Specialty" Then
vSQL = vSQL + " AND category LIKE '%Specialty%' "
End if
...
Set RS = Conn.Execute(vSQL)
%>
The R1, R2, R3 and R4 variables are sent via a form on a previous page and the kind statement is URL-passed.
Your help is greatly appreciated.
Thanx!