asp classic - Is there a way to show picture if html has been included in another file -
problem: have file called index.html
. file has been included in file called main.asp
.
<!--#include virtual="/template/index.html"-->
index.html
has image tag <img src="abcd.jpg"/>
image in same directory index.html
resides. ... when method being used not possible display images in index.html
has been included in main.asp.
use absolute path in image src
:
<img src="/template/abcd.jpg"/>
Comments
Post a Comment