Can't fix ASP error 126

M

Mr. Know Nothing

I am trying to search a database result and i get the following:

Active Server Pages error 'ASP 0126'
Include file not found
/test/Calllog2.asp, line 58
The include file 'fpweb:///_fpclass/fpdblib.inc' was not found.

But I know the file is there. That I don't understand but also I don't
understand why it says the error is on line 58 because line 58 is the
following:
<% end if %>
<%
fp_sQry="SELECT * FROM Customer where customerID = ::T1::"
fp_sDefault="T1="
fp_sNoRecords="<tr><td colspan=5 align=left width=""100%"">No records
returned.</td></tr>"
fp_sDataConn="Customers"
fp_iMaxRecords=256
fp_iCommandType=1
fp_iPageSize=0
fp_fTableFormat=True
fp_fMenuFormat=False
fp_sMenuChoice=""
fp_sMenuValue=""
fp_iDisplayCols=5
fp_fCustomQuery=True
BOTID=0 *****Line 58**************
fp_iRegion=BOTID
%>
<!--#include file="fpweb:///_fpclass/fpdbrgn1.inc"-->

If anyone can help me with this problem it would be more then greatly
appreciated as i can't make any more asp pages.
 
S

Stefan B Rusynko

A path like fpweb:///_fpclass/fpdbrgn1.inc indicates a file based path instead of a relative path
(the /// is only used in file paths)
Make sure you are opening a Web in FP before you start the DBRW creating the page w/i the FP Web




|I am trying to search a database result and i get the following:
|
| Active Server Pages error 'ASP 0126'
| Include file not found
| /test/Calllog2.asp, line 58
| The include file 'fpweb:///_fpclass/fpdblib.inc' was not found.
|
| But I know the file is there. That I don't understand but also I don't
| understand why it says the error is on line 58 because line 58 is the
| following:
| <% end if %>
| <%
| fp_sQry="SELECT * FROM Customer where customerID = ::T1::"
| fp_sDefault="T1="
| fp_sNoRecords="<tr><td colspan=5 align=left width=""100%"">No records
| returned.</td></tr>"
| fp_sDataConn="Customers"
| fp_iMaxRecords=256
| fp_iCommandType=1
| fp_iPageSize=0
| fp_fTableFormat=True
| fp_fMenuFormat=False
| fp_sMenuChoice=""
| fp_sMenuValue=""
| fp_iDisplayCols=5
| fp_fCustomQuery=True
| BOTID=0 *****Line 58**************
| fp_iRegion=BOTID
| %>
| <!--#include file="fpweb:///_fpclass/fpdbrgn1.inc"-->
|
| If anyone can help me with this problem it would be more then greatly
| appreciated as i can't make any more asp pages.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top