How to set up a variable on the root directory for the url link in ColdFusion?
I set up the variable on the root directory for the url link, appweb\instance.cfm:
<CFSCRIPT>
...
...
Application.MainLink = "http://www.ucdavis.edu/index.html";
</CFSCRIPT>
I have a file under appweb/costsharing/footer.cfm to use the variable for url link, but it doesn't work.
<br />
<br />
<div align="center">
<b>Need Help? Visit the <a href="#Application.MainLink#" target=_blank>Cost Sharing Help</a></b>
</div>
<br />
<br />
<CFInclude Template="../OnRequestEnd.cfm">
</body>
</html>
Any suggestion?