Parametri ByVal di VBScript
Cosa sono i parametri ByVal?
Se viene specificato ByVal, gli argomenti vengono inviati come byvalue quando viene chiamata la funzione o la procedura.
Esempio
<!DOCTYPE html>
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
Function fnadd(Byval num1, Byval num2)
num1 = 4
num2 = 5
End Function
Dim x,y
x = 6
y = 4
res = fnadd(x,y)
document.write("The value of x is " & x & "<br />")
document.write("The value of y is " & y & "<br />")
</script>
</body>
</html>
La funzione precedente accetta i parametri x e y come valori. Quindi, dopo aver eseguito la funzione, i valori rimangono invariati.
Se la funzione precedente viene salvata come .html ed eseguita in IE, l'output sarà il seguente:
The value of x is 6
The value of y is 4