I am new to working with websites and am now in charge of a couple of websites for my job.
The problem I am having is that the newer site of the two will not seem to load any of the data from the database (I assume).
Here is the error message I get:
Quote:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'FP_FieldVal'
/chiro.asp, line 1065
|
The site is coded in .ASP and otherwise works fine. The exact line will vary depending on what category you chose. Here is a
link.
And here is the code around line 1065: (1059-1070)
Code:
<%
Dim x, bgcolor
if x = 1 then
bgcolor="#756FE6"
x=2
Else
bgcolor="#336699"
x=1
End if %>
<td bgcolor='<%=bgcolor%>'>
<img src="../images/<!--webbot bot="DatabaseResultColumn" s-columnnames="ID,Item Number,Product Manufacturer,Notes,Categories,Record Name" s-column="Record Name" b-tableformat="TRUE" b-hashtml="FALSE" b-makelink="FALSE" clientside b-MenuFormat preview="<font size="-1">&lt;&lt;</font>Record Name<font size="-1">&gt;&gt;</font>" startspan --><%=FP_FieldVal(fp_rs,"Record*Name")%><!--webbot bot="DatabaseResultColumn" endspan i-checksum="31877" -->" width="75"></td>
<td bgcolor='<%=bgcolor%>'>
It looks like the previous person who created the site used a template because it has all sorts of notes in the actual code, but I am unable to find that template. Any help would be appreciated.