Om en cell i db innehåller filnamn.jpg vill jag att en liten bild ska visas som talar om att det finns en bild att se som en användare laddat upp. Skrev så här men utan resultat: <%if rs("file") <> null then%><img src="filename.jpg"><%end if%> Vad göra? Såg att du hade löst det, men om du vill jämföra med null så använd funktionen isNull() Om du har löst ditt problem, var vänlig markera det som löst ocksåVisa bild om cellen i db innehåller något.
Sv: Visa bild om cellen i db innehåller något.
<code>
If isNull(whatever) Then
' ...
Else
' ...
End If
</code>Sv:Visa bild om cellen i db innehåller något.