See that is what is off is I do not have any on error resume next so it should give a error if something is going on with not being able to open the database. It gives a error saying not able to open the database when i am in the process of uploading a new database and trying to request the page.
Here is the code with the only thing I removed is pure HTML...
index.asp
<!--#include file="./config/config.asp"-->
<!--#include file="./config/inc_functions.asp"-->
<%
' # LETS GRAB THE TOP 3 PROPERTY'S
strSql = "SELECT TOP 3 P_ID"
strSql = strSql & ", P_Name"
strSql = strSql & ", P_SalePrice"
strSql = strSql & " FROM Property"
strSql = strSql & " ORDER BY P_Featured DESC"
strSql = strSql & ", P_SalePrice ASC"
set rs = my_Conn.Execute (strSql)
config.asp
ConfigConnectionString = "BLAHBLAHBLAHBLAH"
configImageLocation = "/images/internal/"
configPropertyImageLocation = "/images/property/"
configPropertyImagePhysical = "C:\inetpub\lakeshorerealty\images\property\"
configPropertysPerPage = 5
configRemoteHost = "mail19.webcontrolcenter.com"
set my_Conn = Server.CreateObject("ADODB.Connection")
my_Conn.Open ConfigConnectionString
SessionAdminUsername = Session("AdminUsername")
SessionAdminPassword = Session("AdminPassword")