Const Question
Dear All,
I've got a Constant defined as a base URL, and am trying to use that in conjunction with some filenames to create other constants as follows :
Const BaseURL="http://www.greggriffiths.org/images/"
Const NewImg=BaseURL & "new.gif"
For some reason I get an error on the second line, even though I am using a Constant and not a Variable to create the second Constant. Has anyone got a workaround to this, apart from using Variables for NewImg ?
|