PDA

Click to See Complete Forum and Search --> : Valid Constants for VB Script?


jesus4u
Feb 26th, 2001, 12:46 PM
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"

jdavison
Feb 26th, 2001, 12:48 PM
take the quotes out or it will be read as a string.

Const cEarlyIndiv = 105
Const cEarlySpouse = 95
Const cPastor = 75
Const cStudent = 75

jesus4u
Feb 26th, 2001, 12:53 PM
thank you hope it works