aspnetvbnetnerd
Programmer
I am sending querystring with competens using + sign, when I want to retreive the the querystring "competence" the value is totaly wrong
The value that I getting is this
What happens to my C# and C++ value
How can I solve this problem?
Code:
<html>
<head>
</head>
<Body>
<%=Request.QueryString("Competence") %><br />
<%=Server.UrlEncode(Request.QueryString("Competence"))%>
<form action="ace.asp?competence=C#+sql server 2005+C++" method="post">
<input type="submit">
</form>
</Body>
</html>
The value that I getting is this
Code:
[COLOR=red]sql server 2005 C
sql+server+2005+C [/color]
What happens to my C# and C++ value
How can I solve this problem?