jschementi / iron

[Jimmy Schementi's development fork] Implementations of Python and Ruby programming languages for .NET Framework that are built on top of the Dynamic Language Runtime.
http://ironruby.net
17 stars 2 forks source link

Make sure form data is handled correctly #18

Open jschementi opened 15 years ago

jschementi commented 15 years ago

Reported by Durgaprasad Gorti:

In the request.cs file I see that in line 51, you get the query string, Then in line 68 you get the query string for the body buy this query string is not initialized in between. So the qs has the values of the original query string + form data.

Also why do we need to munge the data and make it look like key value pairs? Can’t RACK app deal with that?