I am retrieving Values from Access DB which I need to Format. I am using the following:
myDataReader = OleDbComm.ExecuteReader()
I want to Display the Formatted Values in a table in a DataList:
<td><%# Container.DataItem("Price") %></td>
The Format I want is as follows:
Dim MyDouble As Double = 123456789
Response.Write(MyDouble.ToString("C"))
How can I apply this to myDataReader so that I can display the formatted value for Price ?
