On my site i pass variables from one page to another, this is no problem. But when i'll get a string with a + or & sign for example this NE SO 1.1 + 1.2 string I will lose the + sign when I'll pass it from one page to another. I will get NE SO 1.1 1.2 this result when I'll pass it from one page to another. Even if I do this with the following simple code I will get the same result:
FILE : SENDING.ASP
Expand|Select|Wrap|Line Numbers
- <%
- name2 = "NE SO 1.1 + 1.2"
- %>
- <a href="t3.asp?name=<%=name2%>" target="frameInfo" > link</a>
Expand|Select|Wrap|Line Numbers
- <%
- gotname = request.querystring("name")
- %>
NE SO 1.1 1.2
Can someone give me a hind to avoid losing these signs?!