I'm trying to get parameters received from a form, that were sent with method POST.
I don't know how it's called in asp, M$ loves to change stuff's names to mess with us. They come in HTTP body, while GET/QueryString parameters come in URL after the ? sign.
In PHP, "get patameters" are available in the $_GET
array. In asp they are Request.QueryString["parameter1"]
.
"post patameters" are in $_POST
, and I cant find it in asp. I hope I made it clear :p