Get all post data from request

asp.net

Solution

foreach(string name in Request.Form)
{
    Response.Write(Request.Form[name]);
}

Problem

Is there any way to get all the POST data sent to a .NET webpage? Basically I am looking for the equivalent of the PHP $_POST array The purpose being that I am receiving requests from a client that I have no control over and need to get all the data without knowing they keys.

Original source