I need to select from a pulldown menu from select field type (using a lookup) that contain images and pass interger ID file type.
I try:
SELECT ID, Descrizione
FROM dbo.APTab_Stelle
ORDER BY ID
Descrizione contain <img src=’…/_lib/img/filename.jpg’ />
or add a BLOB field that contain image:
SELECT ID, Image
FROM dbo.APTab_Stelle
ORDER BY ID
thanks