Hello EE,
Is it possible to read the value of a POST Header Entity Response Body value ?
in other words, If I have an Entity Content-Length : 56
how can I know its value ? I know its the length, but how can I see what is it? doesnt matter if its ASCII or something else to me
another question attached to this is, if I know its value, is it possible to achieve the same results with a Querystring after ?
The .Net version of $_GET[] is :
Request.Querystring["param
The .Net version of $_POST[] is :
Request.Form["paramName"];
Frameworks that are available with .NET hide these under other functions.