Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

VBScript CDbl Function

❮ Complete VBScript Reference

The CDbl function converts an expression to type Double.

The expression must be a numeric value.

Syntax

CDbl(expression)
Parameter Description
expression Required. Any valid expression

Examples

Example 1

<%

response.write(CDbl(134.345) & "<br />")

%>

The output of the code above will be:

134.345
Show Example »

Example 2

<%

response.write(CDbl(14111111113353355.345455) & "<br />")

%>

The output of the code above will be:

1.41111111133534E+16
Show Example »

❮ Complete VBScript Reference