hi guys how will i be able to change "spaces" on records being returned by a recordset.
for example I have this code that will return a value of "John Doe":
<td width="30%"><%=rsTmp("Name")%></font></td>
What I would like to do is to change the space between the words into:
so that when my page got congested the name "John Doe" will still be in a straight line and will not be separated.
Thanks in advance!
In Classic ASP you will need to code the following:
<%= Replace(rsTmp("Name")," "," ") %>
Which is the same as
<%
Response.Write ( Replace(rsTmp("Name")," "," ") )
%>
Actually, I would suggest using replace(rsTmp("Name"), " ", " ")
In HTML5 the ASCII code
are replaced with  
. You might as well do this from this day and onwards ;)
I resolved it!
I used replace function like this.
<% Replace(rsTmp("Name")," "," ")%>