I created the following test code and it runs just fine, I believe it does basically what you are asking code to do.  


HTH


<!--- Test Code --->
<cfscript>
aQuery = queryNew("menu_bmarkLink,menu_Text,menu_nonBmarkLink");
tmp = QueryAddRow(aQuery,4);
tmp = QuerySetCell(aQuery,"menu_bmarkLink","MinorRts",1);
tmp = QuerySetCell(aQuery,"menu_bmarkLink","FellSvc",2);
tmp = QuerySetCell(aQuery,"menu_bmarkLink","AmnInf",3);
tmp = QuerySetCell(aQuery,"menu_bmarkLink","AnteSter",4);

tmp = QuerySetCell(aQuery,"menu_Text","MinorRts Link",1);
tmp = QuerySetCell(aQuery,"menu_Text","FellSvc Link",2);
tmp = QuerySetCell(aQuery,"menu_Text","AmnInf Link",3);
tmp = QuerySetCell(aQuery,"menu_Text","AnteSter Link",4);


</cfscript>
<cfdump var="#aQuery#">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
#FellSvc{display:none;}
#MinorRts{display:none;}
#AmnInf{display:none;}
#AnteSter{display:none;}


</style>
</head>


<body>
<ul>
<cfoutput query="aQuery">
<li><A HREF=""
</cfoutput>
</ul>


<div id="FellSvc">FellSvc<br/><a href="" content</a></div>
<div id="MinorRts">MinorRts<br/><a href="" content</a></div>
<div id="AmnInf">AmnInf<br/><a href="" content</a></div>
<div id="AnteSter">AnteSter<br/><a href="" content</a></div>
</body>
</html>

<!--- End Test Code --->
--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

"C code. C code run. Run code run. Please!"
     - Cynthia Dunning
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to