Are these Valid Constants for VB Script?
They are going to be used in an .asp page for math calculations.
Const cEarlyIndiv = "105" 'representing $105
Const cEarlySpouse = "95"
Const cPastor = "75"
Const cStudent = "75"
Printable View
Are these Valid Constants for VB Script?
They are going to be used in an .asp page for math calculations.
Const cEarlyIndiv = "105" 'representing $105
Const cEarlySpouse = "95"
Const cPastor = "75"
Const cStudent = "75"
take the quotes out or it will be read as a string.
Const cEarlyIndiv = 105
Const cEarlySpouse = 95
Const cPastor = 75
Const cStudent = 75
thank you hope it works