M
mosow
I had posted this earlier as part of another message rather than as a
new post.
I have a form that I have created using FP 2000. I change the text
box to validate the entry. When bringing up the page in my browser
from our web server, I get the following message:
'DB1' is null or not an object
This is the name of the field I am trying to validate. I have
included the HTML below.
Any idea on why this is happening and how to correct?
TIA
I can not give you a URL as this is part of an internal site. The
code is below, generated by FrontPage:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Release Date Comparison</title>
</head>
<body>
<p align="left"><font face="Arial Black" color="#008080"><a
href="rms_reports.htm">Return
to Report Menu</a> </font><font
size="2"> </font>
<font size="2">Date: <script language="VBScript">
document.write(FormatDateTime(Date(),0))</script>
Time: <script language="VBScript">
document.write(FormatDateTime(Time(),0))</script>
</font></p>
<p align="center"><font size="7" face="Comic Sans MS"
color="#FF0066"><i><b><u>Release
Date Comparison</u></b></i></font></p>
<script Language="JavaScript">
function FrontPage_Form1_Validator(theForm)
{
var checkOK = "0123456789-.,";
var checkStr = theForm.DB1.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
return (true);
}
//--></script>
<!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script
Language="JavaScript"><!--
function FrontPage_Form1_Validator(theForm)
{
var checkOK = "0123456789-.,";
var checkStr = theForm.DB1.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
return (true);
}
//--></script><!--webbot BOT="GeneratedScript" endspan --><form
BOTID="0" METHOD="POST" ACTION="DateComparison1.asp" onsubmit="return
FrontPage_Form1_Validator(this)" name="FrontPage_Form1">
<table BORDER="0">
<tr>
<td><b>Prior Database:</b></td>
<td><!--webbot bot="Validation" S-Data-Type="Number"
S-Number-Separators=",." --><input NAME="DB1"
VALUE="<%=Request("DB1")%>" size="20"></td>
</tr>
<tr>
<td><b>Prior Release:</b></td>
<td><input NAME="PV1" VALUE="<%=Request("PV1")%>"
size="20"></td>
</tr>
<tr>
<td><b>Current Database:</b></td>
<td><input NAME="DB2" VALUE="<%=Request("DB2")%>"
size="20"></td>
</tr>
<tr>
<td><b>Current Release:</b></td>
<td><input NAME="PV2" VALUE="<%=Request("PV2")%>"
size="20"></td>
</tr>
</table>
<br>
<input TYPE="Submit"><input TYPE="Reset"><!--webbot bot="SaveAsASP"
CLIENTSIDE
SuggestedExt="asp" PREVIEW=" " -->
</form>
<table width="815" border="1">
<thead>
<tr>
<td width="155"><b>Object Family</b></td>
<td width="58" align="left"><b>Object</b></td>
<td width="71" align="center"><b>Prior<br>
Database</b></td>
<td width="62" align="center"><b>Prior<br>
Version</b></td>
<td width="102" align="center"><b>Prior Date<br>
Compiled</b></td>
<td width="71" align="center"><b>Current<br>
Database</b></td>
<td width="62" align="center"><b>Current<br>
Version</b></td>
<td width="102" align="center"><b>Current Date<br>
Compiled</b></td>
<td width="104" align="center"><b>Host<br>
System</b></td>
</tr>
</thead>
<tbody>
<!--webbot bot="DatabaseRegionStart" startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-columntypes="200,200,2,200,200,2,200,200,200,200"
s-dataconnection="RMS97"
b-tableformat="TRUE" b-menuformat="FALSE" s-menuchoice="Object
Family Name"
s-menuvalue="Object Family Name" b-tableborder="TRUE"
b-tableexpand="TRUE"
b-tableheader="TRUE" b-listlabels="TRUE" b-listseparator="TRUE"
i-ListFormat="0" b-makeform="TRUE"
s-recordsource="Date_Compare_Single"
s-displaycolumns="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem"
s-criteria="{Database Release 1} EQ {DB1} + {Product Version 1} EQ
{PV1} + {Database Release 2} EQ {DB2} + {Product Version 2} EQ {PV2}
+"
s-order
s-sql="SELECT * FROM Date_Compare_Single WHERE (&quot;Database
Release 1&quot; = :B1:: AND &quot;Product Version
1&quot; = :V1:: AND &quot;Database Release 2&quot; =
:B2:: AND &quot;Product Version 2&quot; = :V2:"
b-procedure="FALSE" clientside SuggestedExt="asp"
s-DefaultFields="DB1=0&amp;PV1=0&amp;DB2=0&amp;PV2=0"
s-NoRecordsFound="No records returned." i-MaxRecords="0"
i-GroupSize="0"
BOTID="0" u-dblib="_fpclass/fpdblib.inc"
u-dbrgn1="_fpclass/fpdbrgn1.inc"
u-dbrgn2="_fpclass/fpdbrgn2.inc" tag="TBODY"
local_preview="<tr><td colspan=64
bgcolor="#FFFF00" align="left"
width="100%"><font
color="#000000">Database Results regions will not preview
unless this page is fetched from a Web server with a web browser. The
following table row will repeat once for every record returned by the
query.</font></td></tr>"
preview="<tr><td colspan=64 bgcolor="#FFFF00"
align="left" width="100%"><font
color="#000000">This is the start of a Database Results
region. The page must be fetched from a web server with a web browser
to display correctly; the current web is stored on your local disk or
network.</font></td></tr>"
b-WasTableFormat="TRUE" b-ReplaceDatabaseRegion="FALSE"
--><!--#include file="_fpclass/fpdblib.inc"-->
<%
fp_sQry="SELECT * FROM Date_Compare_Single WHERE (""Database Release
1"" = :B1:: AND ""Product Version 1"" = :V1:: AND ""Database
Release 2"" = :B2:: AND ""Product Version 2"" = :V2:"
fp_sDefault="DB1=0&PV1=0&DB2=0&PV2=0"
fp_sNoRecords="<tr><td colspan=9 align=left width=""100%"">No records
returned.</td></tr>"
fp_sDataConn="RMS97"
fp_iMaxRecords=0
fp_iCommandType=1
fp_iPageSize=0
fp_fTableFormat=True
fp_fMenuFormat=False
fp_sMenuChoice="Object Family Name"
fp_sMenuValue="Object Family Name"
fp_iDisplayCols=9
fp_fCustomQuery=False
BOTID=0
fp_iRegion=BOTID
%>
<!--#include file="_fpclass/fpdbrgn1.inc"-->
<!--webbot bot="DatabaseRegionStart" i-CheckSum="17107" endspan -->
<tr>
<td width="155"><!--webbot bot="DatabaseResultColumn" startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Object Family Name" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Object Family
Name<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Object Family
Name<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Object Family Name")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="51362" endspan -->
</td>
<td width="58" align="left"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Object Name" b-tableformat="TRUE" b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Object
Name<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Object
Name<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Object Name")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="27162" endspan -->
</td>
<td width="71" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Database Release 1" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Database Release
1<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Database Release
1<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Database Release 1")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="34652" endspan -->
</td>
<td width="62" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Product Version 1" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Product Version
1<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Product Version
1<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Product Version 1")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="38023" endspan -->
</td>
<td width="102" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Enterprise Date Compiled 1" b-tableformat="TRUE"
b-hasHTML="FALSE" clientside
local_preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 1<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 1<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Enterprise Date Compiled 1")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="1376" endspan -->
</td>
<td width="71" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Database Release 2" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Database Release
2<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Database Release
2<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Database Release 2")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="34780" endspan -->
</td>
<td width="62" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Product Version 2" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Product Version
2<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Product Version
2<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Product Version 2")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="38087" endspan -->
</td>
<td width="102" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Enterprise Date Compiled 2" b-tableformat="TRUE"
b-hasHTML="FALSE" clientside
local_preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 2<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 2<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Enterprise Date Compiled 2")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="1504" endspan -->
</td>
<td width="104" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="HostSystem" b-tableformat="TRUE" b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>HostSystem<font
size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>HostSystem<font
size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"HostSystem")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="30332" endspan -->
</td>
</tr>
<!--webbot bot="DatabaseRegionEnd" startspan b-tableformat="TRUE"
b-menuformat="FALSE" u-dbrgn2="_fpclass/fpdbrgn2.inc"
i-groupsize="0"
clientside tag="TBODY"
local_preview="<tr><td colspan=64
bgcolor="#FFFF00" align="left"
width="100%"><font color="#000000">This
is the end of a Database Results
region.</font></td></tr>"
preview="<tr><td colspan=64 bgcolor="#FFFF00"
align="left" width="100%"><font
color="#000000">This is the end of a Database Results
region.</font></td></tr>" --><!--#include
file="_fpclass/fpdbrgn2.inc"-->
<!--webbot bot="DatabaseRegionEnd" i-CheckSum="62730" endspan -->
</tbody>
</table>
</body>
</html>
new post.
I have a form that I have created using FP 2000. I change the text
box to validate the entry. When bringing up the page in my browser
from our web server, I get the following message:
'DB1' is null or not an object
This is the name of the field I am trying to validate. I have
included the HTML below.
Any idea on why this is happening and how to correct?
TIA
I can not give you a URL as this is part of an internal site. The
code is below, generated by FrontPage:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Release Date Comparison</title>
</head>
<body>
<p align="left"><font face="Arial Black" color="#008080"><a
href="rms_reports.htm">Return
to Report Menu</a> </font><font
size="2"> </font>
<font size="2">Date: <script language="VBScript">
document.write(FormatDateTime(Date(),0))</script>
Time: <script language="VBScript">
document.write(FormatDateTime(Time(),0))</script>
</font></p>
<p align="center"><font size="7" face="Comic Sans MS"
color="#FF0066"><i><b><u>Release
Date Comparison</u></b></i></font></p>
<script Language="JavaScript">
function FrontPage_Form1_Validator(theForm)
{
var checkOK = "0123456789-.,";
var checkStr = theForm.DB1.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
return (true);
}
//--></script>
<!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script
Language="JavaScript"><!--
function FrontPage_Form1_Validator(theForm)
{
var checkOK = "0123456789-.,";
var checkStr = theForm.DB1.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"DB1\" field.");
theForm.DB1.focus();
return (false);
}
return (true);
}
//--></script><!--webbot BOT="GeneratedScript" endspan --><form
BOTID="0" METHOD="POST" ACTION="DateComparison1.asp" onsubmit="return
FrontPage_Form1_Validator(this)" name="FrontPage_Form1">
<table BORDER="0">
<tr>
<td><b>Prior Database:</b></td>
<td><!--webbot bot="Validation" S-Data-Type="Number"
S-Number-Separators=",." --><input NAME="DB1"
VALUE="<%=Request("DB1")%>" size="20"></td>
</tr>
<tr>
<td><b>Prior Release:</b></td>
<td><input NAME="PV1" VALUE="<%=Request("PV1")%>"
size="20"></td>
</tr>
<tr>
<td><b>Current Database:</b></td>
<td><input NAME="DB2" VALUE="<%=Request("DB2")%>"
size="20"></td>
</tr>
<tr>
<td><b>Current Release:</b></td>
<td><input NAME="PV2" VALUE="<%=Request("PV2")%>"
size="20"></td>
</tr>
</table>
<br>
<input TYPE="Submit"><input TYPE="Reset"><!--webbot bot="SaveAsASP"
CLIENTSIDE
SuggestedExt="asp" PREVIEW=" " -->
</form>
<table width="815" border="1">
<thead>
<tr>
<td width="155"><b>Object Family</b></td>
<td width="58" align="left"><b>Object</b></td>
<td width="71" align="center"><b>Prior<br>
Database</b></td>
<td width="62" align="center"><b>Prior<br>
Version</b></td>
<td width="102" align="center"><b>Prior Date<br>
Compiled</b></td>
<td width="71" align="center"><b>Current<br>
Database</b></td>
<td width="62" align="center"><b>Current<br>
Version</b></td>
<td width="102" align="center"><b>Current Date<br>
Compiled</b></td>
<td width="104" align="center"><b>Host<br>
System</b></td>
</tr>
</thead>
<tbody>
<!--webbot bot="DatabaseRegionStart" startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-columntypes="200,200,2,200,200,2,200,200,200,200"
s-dataconnection="RMS97"
b-tableformat="TRUE" b-menuformat="FALSE" s-menuchoice="Object
Family Name"
s-menuvalue="Object Family Name" b-tableborder="TRUE"
b-tableexpand="TRUE"
b-tableheader="TRUE" b-listlabels="TRUE" b-listseparator="TRUE"
i-ListFormat="0" b-makeform="TRUE"
s-recordsource="Date_Compare_Single"
s-displaycolumns="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem"
s-criteria="{Database Release 1} EQ {DB1} + {Product Version 1} EQ
{PV1} + {Database Release 2} EQ {DB2} + {Product Version 2} EQ {PV2}
+"
s-order
s-sql="SELECT * FROM Date_Compare_Single WHERE (&quot;Database
Release 1&quot; = :B1:: AND &quot;Product Version
1&quot; = :V1:: AND &quot;Database Release 2&quot; =
:B2:: AND &quot;Product Version 2&quot; = :V2:"
b-procedure="FALSE" clientside SuggestedExt="asp"
s-DefaultFields="DB1=0&amp;PV1=0&amp;DB2=0&amp;PV2=0"
s-NoRecordsFound="No records returned." i-MaxRecords="0"
i-GroupSize="0"
BOTID="0" u-dblib="_fpclass/fpdblib.inc"
u-dbrgn1="_fpclass/fpdbrgn1.inc"
u-dbrgn2="_fpclass/fpdbrgn2.inc" tag="TBODY"
local_preview="<tr><td colspan=64
bgcolor="#FFFF00" align="left"
width="100%"><font
color="#000000">Database Results regions will not preview
unless this page is fetched from a Web server with a web browser. The
following table row will repeat once for every record returned by the
query.</font></td></tr>"
preview="<tr><td colspan=64 bgcolor="#FFFF00"
align="left" width="100%"><font
color="#000000">This is the start of a Database Results
region. The page must be fetched from a web server with a web browser
to display correctly; the current web is stored on your local disk or
network.</font></td></tr>"
b-WasTableFormat="TRUE" b-ReplaceDatabaseRegion="FALSE"
--><!--#include file="_fpclass/fpdblib.inc"-->
<%
fp_sQry="SELECT * FROM Date_Compare_Single WHERE (""Database Release
1"" = :B1:: AND ""Product Version 1"" = :V1:: AND ""Database
Release 2"" = :B2:: AND ""Product Version 2"" = :V2:"
fp_sDefault="DB1=0&PV1=0&DB2=0&PV2=0"
fp_sNoRecords="<tr><td colspan=9 align=left width=""100%"">No records
returned.</td></tr>"
fp_sDataConn="RMS97"
fp_iMaxRecords=0
fp_iCommandType=1
fp_iPageSize=0
fp_fTableFormat=True
fp_fMenuFormat=False
fp_sMenuChoice="Object Family Name"
fp_sMenuValue="Object Family Name"
fp_iDisplayCols=9
fp_fCustomQuery=False
BOTID=0
fp_iRegion=BOTID
%>
<!--#include file="_fpclass/fpdbrgn1.inc"-->
<!--webbot bot="DatabaseRegionStart" i-CheckSum="17107" endspan -->
<tr>
<td width="155"><!--webbot bot="DatabaseResultColumn" startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Object Family Name" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Object Family
Name<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Object Family
Name<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Object Family Name")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="51362" endspan -->
</td>
<td width="58" align="left"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Object Name" b-tableformat="TRUE" b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Object
Name<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Object
Name<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Object Name")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="27162" endspan -->
</td>
<td width="71" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Database Release 1" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Database Release
1<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Database Release
1<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Database Release 1")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="34652" endspan -->
</td>
<td width="62" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Product Version 1" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Product Version
1<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Product Version
1<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Product Version 1")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="38023" endspan -->
</td>
<td width="102" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Enterprise Date Compiled 1" b-tableformat="TRUE"
b-hasHTML="FALSE" clientside
local_preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 1<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 1<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Enterprise Date Compiled 1")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="1376" endspan -->
</td>
<td width="71" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Database Release 2" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Database Release
2<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Database Release
2<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Database Release 2")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="34780" endspan -->
</td>
<td width="62" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Product Version 2" b-tableformat="TRUE"
b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>Product Version
2<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Product Version
2<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Product Version 2")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="38087" endspan -->
</td>
<td width="102" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="Enterprise Date Compiled 2" b-tableformat="TRUE"
b-hasHTML="FALSE" clientside
local_preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 2<font size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>Enterprise Date
Compiled 2<font size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"Enterprise Date Compiled 2")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="1504" endspan -->
</td>
<td width="104" align="center"><!--webbot
bot="DatabaseResultColumn"
startspan
s-columnnames="Object Family Name,Object Name,Database Release
1,Product Version 1,Enterprise Date Compiled 1,Database Release
2,Product Version 2,Enterprise Date Compiled 2,HostSystem,HostSystem"
s-column="HostSystem" b-tableformat="TRUE" b-hasHTML="FALSE"
clientside
local_preview="<font
size="-1">&lt;&lt;</font>HostSystem<font
size="-1">&gt;&gt;</font>"
preview="<font
size="-1">&lt;&lt;</font>HostSystem<font
size="-1">&gt;&gt;</font>"
--><%=FP_FieldVal(fp_rs,"HostSystem")%><!--webbot
bot="DatabaseResultColumn" i-CheckSum="30332" endspan -->
</td>
</tr>
<!--webbot bot="DatabaseRegionEnd" startspan b-tableformat="TRUE"
b-menuformat="FALSE" u-dbrgn2="_fpclass/fpdbrgn2.inc"
i-groupsize="0"
clientside tag="TBODY"
local_preview="<tr><td colspan=64
bgcolor="#FFFF00" align="left"
width="100%"><font color="#000000">This
is the end of a Database Results
region.</font></td></tr>"
preview="<tr><td colspan=64 bgcolor="#FFFF00"
align="left" width="100%"><font
color="#000000">This is the end of a Database Results
region.</font></td></tr>" --><!--#include
file="_fpclass/fpdbrgn2.inc"-->
<!--webbot bot="DatabaseRegionEnd" i-CheckSum="62730" endspan -->
</tbody>
</table>
</body>
</html>