vote up 1 vote down star
1

In asp classic and vbscript, you can declare a Const with a hexidecial value, and a date type value:

 Const C_LIGHTCYAN = &hCCFFEE
 Const C_STARTDATE = #1 JAN 2000#

But how can I declare currency, single or doubles data types?

 Const C_LONG = 1024 '# I want this to be a LONG, not an INT!

I'm sure I've seen something like Const C_LNG = L12345 or some other prefix/suffix combination for longs or doubles but can't find the source now

flag

2 Answers

vote up 0 vote down

Here is the CLng function for VBScript. But since you can't declare use a function for a constant declaration, and you can't re-assign to a constant, do you really have to use constants here?

link|flag
vote up 0 vote down

You can't declare variables with data types in ASP just set the value in decleration, that should work fingers crossed.

I don't think there is currency type anyway. For double you can 1.00 etc.

link|flag
There are currency data types: msdn.microsoft.com/en-gb/library/… I like "fingers crossed". I've gotfar too used to that that now... – Guy May 14 at 9:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.