Say I have a controller method, that accepts just a string:
[HttpPost]
public ActionResult DoSomething(string emailAddress)
{
//
}
How could I validate that emailAddress isn't null...?
Obviously I can't use DataAnnotations, as I don't have a model?