Classic ASP Request.Form removes spaces?

Posted by alex on Stack Overflow See other posts from Stack Overflow or by alex
Published on 2010-06-10T21:10:49Z Indexed on 2010/06/10 21:12 UTC
Read the original article Hit count: 423

Filed under:
|
|

I'm trying to figure this oddity out... in classic ASP i seem to be losing spaces in Request.Form values...

ie, Request.Form("json") is

{"project":{"...","administrator":"AlexGorbatchev",
"anonymousViewUrl":null,"assets":[],"availableFrom":"6/10/20104:15PM"...

However, CStr(Request.Form) is

json={"project":{"__type":"...":"Alex Gorbatchev",
"anonymousViewUrl":null,"assets":[],"availableFrom":"6/10/2010 4:15 PM"...

Here's the entire code :)

<%@ language="VBSCRIPT"%>
<%
Response.Write(CStr(Request.Form("json")))
Response.Write(CStr(Request.Form))
%>

Somebody please tell me I haven't lost all my marbles...

© Stack Overflow or respective owner

Related posts about form

Related posts about asp