Hi,
I have been learning a little ASP and VbScript. However one example in the book i am using refers to 'ByVal' in some code and does not really make any reference to it.

Below is the sample code. As you can see 'Byval' is inbetween the brackets where the variable declarations go. However nowhere is 'ByVal' referred to as a variable and as I understand it when there is more than one variable there should be a ','.

Anyway if anyone can explain this to me i would be extremely gratefull.


public Property Let CurrentSpeed(ByVal iSpeedIn)
internal_speed = iSpeedIn
End Property