Tag Archives: MVC
Send emails with MVC views

In July I wrote about a nice way to send emails with templates and found a nice solution but the topic seems to be disappeared 🙁 Have a look at Scott Hanselman which describes other tooling for this: http://www.hanselman.com/blog/NuGetPackageOfTheWeek2MvcMailerSendsMailsWithASPNETMVCRazorViewsAndScaffolding.aspx

“Remember me” in ASP.net MVC 2.0

I had to create the “remember me” functionality in the login page for one of our customers. Never had to think about this before and it seems so simple at first. Which it actually is. First of all add a checkbox within the Views\Account\logon.aspx page: Add following in the Controllers\AccountController.cs file:

Back To Top