Number format :
for example,
10,500.00 ( Data type value format of standard for Ms access)
10500 ( Data type value format of general for Ms Access )
In general Ms Access format, webpage is showing the expected value i.e. 10500.
But for standart Ms Access format, webpage showing the value of 10500, Instead of showing the value of 10,500.00.
If i want to show the value of standard format in webpage, then what should i do?
for example,
10,500.00 ( Data type value format of standard for Ms access)
10500 ( Data type value format of general for Ms Access )
Code:
Dim val
val = recordset.fields.item("column_name").value
response.write val
But for standart Ms Access format, webpage showing the value of 10500, Instead of showing the value of 10,500.00.
If i want to show the value of standard format in webpage, then what should i do?
Comment