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("EPIC"
= x.value then %>
<td><input type="checkbox" name="epic" value="<%=x.value%>" style="border:0px; cursor:auto;"></td>
<% end if
next
for each x in Recordset1.Fields
if Recordset1("EPIC"
= x.value then %>
<td><a href="company_info.asp?epic=<%= x.value %>" target="_parent"><%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 %>
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("EPIC"
<td><input type="checkbox" name="epic" value="<%=x.value%>" style="border:0px; cursor:auto;"></td>
<% end if
next
for each x in Recordset1.Fields
if Recordset1("EPIC"
<td><a href="company_info.asp?epic=<%= x.value %>" target="_parent"><%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 %>