As I\'m new to .NET after coming from PHP I chose C# to work with and its coming along nicely. I have a question though regarding the handling of GET and POST.
So fa
Basically that is:
var request = Request["q"]; // $_REQUEST var post = Request.Form["q"]; // $_POST var get = Request.QueryString["q"]; // $_GET