Tag Archive for ".net" tag

Picking the right .NET Framework Version with Specific Reference

August 14th, 2008 by stevi | 4 comments

This morning I needed to work on a long-standing ASP.NET web application project. I haven’t had to run it locally for quite a while. I updated my source from TFS, cleaned and built the solution, and started the project in debug mode. After logging in, I went to a page, and was suddenly staring at [...]

Using two Membership Providers for ASP.NET logins

March 20th, 2008 by stevi | 17 comments

I quite like the Microsoft Membership Framework for handling membership roles, authentication, and security resources in ASP.NET applications. It’s easy to create the initial user login and management framework for a new application, then swap in a more sophisticated Provider as needed. For my current project, we have a new requirement to allow logins against [...]

Role aware ASP.NET web controls

March 12th, 2008 by stevi | 5 comments

A common feature I’ve found necessary for web applications is role-based security at the field level. For example, I may have a form that allows editing a user’s information. The requirements may include the rule that only certain types (roles) may edit certain fields. This can be accomplished in myriad ways. You can create a [...]