You can use the System.Diagnostics.Trace and System.Diagnostics.Debug classes to print out information.
Stopping the execution typically occurs by either returning a relevant System.Web.Mvc.ActionResult, such as System.Web.Mvc.HttpNotFoundResult or by throwing a System.Web.HttpException with the HTTP status code which best describes the problem.
Here's a naive example. Excuse my poor VB.
Public Function UpdateUser(id as Integer, userName as String, password as Password) as ActionResult
Dim user as User = DataServices.GetUserById(id)
If user Is Nothing Then
System.Diagnostics.Debug.WriteLine("Aborting because user did not exist.")
throw new HttpException(404, "Page not found.")
End
' Do more stuff
end
Or in C#
public ActionResult UpdateUser(int id, string userName, string password) {
var user = DataServices.Users.Where(u => u.id == id).SingleOrDefault();
if( user == null ) {
Debug.WriteLine("Aborting because user did not exist.");
return HttpNotFound(); // Helper method in Controller Class.
}
else if( myRoles() < thisUsersRoles(user) ) {
Debug.Writeline("Aborting because insufficient access.");
throw new HttpException(401, "Unauthorized");
}
// update user here
return View();
}
Note that these examples are contrived only to display the use of Debug and the return of http status codes.