So I have a header file called header.cfm in my root.Here is what is going on. I want to use this header file in all my web pages. So I have C:/header.cfm. I have another directory called Solutions. Suppose C:/Solutions/index.cfm. I have a directory called images on C:/ and in Solutions directory too. In my index.cfm in the Solutions directory I call header.cfm
So when I do <cfinclude template="../header.cfm"> the header file looks for the images in the images directory in my Solutions directory. I dont know how to get around it!
For example
C:/Header.cfm--> <td width="115" valign="top"><img src="images/buttonPar.gif" width="115"></td>
C:/Solutions/index.cfm--> <cfinclude= "../header.cfm">
buttonPar.gif is in C:/images/ not in C:/Solutions/images
How do I get around it?
Please help...thanks
So when I do <cfinclude template="../header.cfm"> the header file looks for the images in the images directory in my Solutions directory. I dont know how to get around it!
For example
C:/Header.cfm--> <td width="115" valign="top"><img src="images/buttonPar.gif" width="115"></td>
C:/Solutions/index.cfm--> <cfinclude= "../header.cfm">
buttonPar.gif is in C:/images/ not in C:/Solutions/images
How do I get around it?
Please help...thanks