I have the following code for registering users in my app
[HttpPost]
public virtual ActionResult Register( RegisterModel model ) {
if ( !ModelState.IsValid ) {
//Invalid - redisplay form with errors
return View( model );
}
try {
MembershipUser mu = _manager.RegisterUser( model );
//Send confirmation email here
}
catch ( RegistrationException rex ) {
ModelState.AddModelError( "", rex.Message );
}
return RedirectToAction( "Index", "Home" );
}
If the user get correctly registered on the system I am redirecting him to the Home page of the app with
return RedirectToAction( "Index", "Home" );
I have this code working in my dev box and in my staging server. But when I publish it on the production server accessible through the internet it hangs on the last call, after sending the email, without redirecting the user at all.
Any idea?