Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CFSCRIPT says no </CFSCRIPT> present?

Status
Not open for further replies.

nohandlesleft254

IS-IT--Management
Apr 19, 2006
58
GB
Im trying to use the code below and keep getting the error
' The start tag must have a matching end tag. An explicit end tag can be provided by adding </CFSCRIPT>.'

- But there is a </CFSCRIPT> closing tag...?


<cffunction name="CFQUERY" access="public" returntype="query">
<cfargument name="SQLString" type="string" required="yes">
<cfargument name="Datasource" type="string" required="yes">
<cfargument name="dbType" type="string" default="">
<cfquery name="FindLcornerDoors" datasource="#arguments.Datasource#" dbtype="#arguments.dbType#" maxrows="1">
#preserveSingleQuotes(arguments.SQLString)#
</cfquery>
<cfreturn RecordSet>
</cffunction>
<cfloop from="1" to="#FindSizeBigger.SizeBigger#" index="j">
<CFSCRIPT>
i = FindExtraPrice.Width;
do {
i = i + 1;
SQLString = "SELECT Code, Uprice1 FROM ITEMS WHERE Drang = '#GROUP1.DoorCode#' AND HEIGHT = '#FindExtraPrice.Height#' AND WIDTH = '#i#'";
DATASOURCE = "#Application.HansaData#";
FindLcornerDoors=CFQUERY(SQLString: SQLString,DATASOURCE:DATASOURCE);
while (FindLcornerDoors.RecordCount eq 0);
</CFSCRIPT>
</cfloop>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top