Issue: "<"cfloop query="GetRecords"> is not working properly
Snippet:
"<"cfloop query="GetRecords">
"<"cfset myid = Id >
"<"cfset myname = Name >
"<"/cfloop>
Solution: we have to get the data using query name
like Quername.fieldname, while iterating querydata.
Snippet:
"<"cfloop query="GetRecords" >
"<"cfset myid = GetRecords.Id >
"<"cfset myname = GetRecords.Name >
"<"/cfloop >
~Thanks
Unnam
Monday, February 2, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment