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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -