Currently the way I am handling postbacks in ASP.NET MVC is to grab the input variables using:
string username = "";
if (null != Request["username"])
username = Request["username"].ToString();
I then would run a regex on the variable to ensure it was valid.
Is there any other method for doing this?