Hi, I wonder if anyone could give a clue about how one deals with space between characters in querystrings.
For example i have links like
page.asp?countr y=<%=rs("countr y")%>
This often results in
page.asp?countr y=american art
with the result with a space between the query. I would like to swap the spaces for "-".
Is it something like this that one has to use?
Replace(country , " ", "-", 1, -1, 1)
If so how would one write that in? with response write?
<%
response.write
%>
Thanks for any pointers
Richard
For example i have links like
page.asp?countr y=<%=rs("countr y")%>
This often results in
page.asp?countr y=american art
with the result with a space between the query. I would like to swap the spaces for "-".
Is it something like this that one has to use?
Replace(country , " ", "-", 1, -1, 1)
If so how would one write that in? with response write?
<%
response.write
%>
Thanks for any pointers
Richard
Comment