tcadieux
01-09-2007, 05:15 PM
I'm using the below existing tables to build a Glossary for our site. What i wanted to add however is a Link back to the page where the specific information is located. Is there a way I could add another tag that would allow me to identify which query the Recordset is being produced by?
strSQL=" SELECT UnitNameID AS GlossaryId , UName_E AS Term_e, UAbbr_E AS Desc_e FROM UnitNames" ' Comes from the Units Table
strSQL=strSQL & " Union SELECT ProductInfoID AS GlossaryId, ProductName AS Term_e, ProductDesc AS Desc_e FROM Equip_ProductName" ' Comes from the Equipment Page
strSQL=" SELECT UnitNameID AS GlossaryId , UName_E AS Term_e, UAbbr_E AS Desc_e FROM UnitNames" ' Comes from the Units Table
strSQL=strSQL & " Union SELECT ProductInfoID AS GlossaryId, ProductName AS Term_e, ProductDesc AS Desc_e FROM Equip_ProductName" ' Comes from the Equipment Page