Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

commas instead of full stops from database

Status
Not open for further replies.

Albuckj2

Programmer
Jan 7, 2003
68
0
0
GB
For some reason, now I have transfered my website from my local PC to online, all data of type "number" (all 'double') which is read from teh database appears with commas instead of full stops.
i.e. - instead of 97.51
it's => 97,51

Which is messing up my whole site!!!

An example of my printing out some data into a table is: (not sure if this will help)

<%int y
y=0
do until Recordset1.EOF OR y = RecordFinish
if y >= RecordStart then %>
<tr>
<% for each x in Recordset1.Fields
if Recordset1(&quot;EPIC&quot;) = x.value then %>
<td><input type=&quot;checkbox&quot; name=&quot;epic&quot; value=&quot;<%=x.value%>&quot; style=&quot;border:0px; cursor:auto;&quot;></td>
<% end if
next

for each x in Recordset1.Fields
if Recordset1(&quot;EPIC&quot;) = x.value then %>
<td><a href=&quot;company_info.asp?epic=<%= x.value %>&quot; target=&quot;_parent&quot;><%Response.Write(x.value)%></a></td>
<% else %>
<td><%Response.Write(x.value)%></td>
<% end if
next %>
</tr>
<% Recordset1.MoveNext
else
Recordset1.MoveNext
end if
y=y+1
loop %>
 
BY the way, it's an MS Access 2000 database.
cheers for any help. I need this running properly online by tomorrow morning!!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top