Re: Image display issue

2008-10-16 Thread rex
Don't use HTMLCodeFormat, it will escape your and Can you output just one row, and make sure that it does output bla ksk kak alkd sk skd img src=/images/myimage.jpg sjd ksd fksdf and that it is not escaped in the database. You don't need HTMLCodeFormat to view it, just view the source. Make

Image display issue

2008-10-15 Thread Don L
CF8, outside query out: img src='/images/myimage.jpg' br -- displayed cfset imgVar = img src=/images/myimage.jpg output var value of image: cfoutput#imgVar#/cfoutput -- displayed db column named myData of varchar|nvarchar (5000), one row's data stream reads bla ksk kak alkd sk skd img

Re: Image display issue

2008-10-15 Thread Dave l
first of all you should close the image tag secondly you need to properly write your image tag bad = cfset imgVar = img src=/images/myimage.jpg better (yet still ugly)= cfset imgVar = img src=/images/myimage.jpg / CF8, outside query out: img src='/images/myimage.jpg' br -- displayed