FormatNumber(Expression[,NumDigAfterDec[,IncLeadingDig[,UseParForNegNum[,GroupDig]]]])
<%
response.write(FormatNumber(20000,2) & "<br />")
response.write(FormatNumber(20000,5))
%>
risultato
20,000.00
20,000.00000
Parameter
<%
response.write(FormatNumber(20000,2) & "<br />")
response.write(FormatNumber(20000,5))
%>
risultato
20,000.00
20,000.00000
Parameter
Description | |
---|---|
expression | Required. The expression to be formatted |
NumDigAfterDec | Optional. Indicates how many places to the right of the decimal are displayed. Default is -1 (the computer's regional settings are used) |
IncLeadingDig | Optional. Indicates whether or not a leading zero is displayed for fractional values:
|
UseParForNegNum | Optional. Indicates whether or not to place negative values within parentheses:
|
GroupDig | Optional. Indicates whether or not numbers are grouped using the group delimiter specified in the computer's regional settings:
|
ASP ServerVariables - SERVER_NAME
Returns the server's host name, DNS alias, or IP address as it would appear in self-referencing URLs
<%
Request.ServerVariables ("server_variable")
%>
Returns the server's host name, DNS alias, or IP address as it would appear in self-referencing URLs
<%
Request.ServerVariables ("server_variable")
%>