User379720387 posted
I am using the StarterSite template and I need confirmation that what I am doing is not any less safe that what was provided in the original template.
Now have a landing page where all authenticated users end up once they are logged in.
In login I have:
if (WebSecurity.Login(email, password, rememberMe)) {
Context.RedirectLocal("~/Members/Landing");
Any critique?