.Net Security - How to implement?

Soldato
Joined
7 Jun 2005
Posts
3,035
Location
SE London
Hi all,

i need to implement security on a webapp i've built in .Net 2.0. We need loads of users and about 5 different user-types. Depending on the user-type, certain features need to be enabled/disabled per page.

I need an easy and flexible way of using this model, with minimal additional code per page. Also it needs to be very secure. It will run on a webserver with an SSL certificate installed.

just need some advise on how to do this.
 
if intranet the use windows domain policy, esle stick with passwords and hashes. .NET 2.0 provides all the controls, just need to wire em up. I'm sure there's plenty of samples if you look at the login control documentation in msdn.
 
Back
Top Bottom