Access Control List in .NET Framework

Written by Balaji


Access Control List in .NET Framework

Once you complete developing a web application, you need to secure it. This is whenrepparttar aspect of security comes into picture. There will be some portions of your application which need to be secured from users. Securing an application may need extra hardware to build complex multi-layer systems with firewalls, and also some highly secure features. Security enables you to provide access to a specified user afterrepparttar 133468 user is authenticated and authorized to accessrepparttar 133469 resources in your web application. The Access Control List is used inrepparttar 133470 authorization process.

The basic concepts of security are Authentication, Authorization, Impersonation and Data or functional security. Authentication isrepparttar 133471 process that enables to identify a user, so that only that user is provided access torepparttar 133472 resources. Authorization isrepparttar 133473 process that enables to determine whether a particular user can be given access torepparttar 133474 resources thatrepparttar 133475 user requests. Impersonation isrepparttar 133476 process that provides access to resources requested by a user under a different identity. Data or functional security isrepparttar 133477 process of securing a system physically, updatingrepparttar 133478 operating system and using robust software.

Some elements of an operating system,repparttar 133479 Internet Information Server (IIS), andrepparttar 133480 .NET Framework work in coordination to providerepparttar 133481 features required to executerepparttar 133482 security concepts mentioned above. For example, Windows 2000 uses its own list of user accounts for identifying and authenticating users. IIS identifiesrepparttar 133483 users based onrepparttar 133484 information provided by Windows, whenrepparttar 133485 users access a web site. IIS after identification ofrepparttar 133486 users, passes this information to ASP.NET. Thenrepparttar 133487 user information is checked for authorization.

Understanding Custom Server Controls in ASP.NET

Written by Balaji


Understanding Custom Server Controls in ASP.NET

ASP.NET offers many server controls forrepparttar developers to create web applications. However, at some point of development time whenrepparttar 133467 developer does not getrepparttar 133468 control they want, they can create a new server control. This new server control can be called ASP.NET Custom Server Controls or user control. The basic difference between a ASP.NET Custom Server Controls and a user control is that unlike a user control that does not appear inrepparttar 133469 Toolbox, you can view a ASP.NET Custom Server Controls inrepparttar 133470 Toolbox. ASP.NET Custom Server Controls have their own events such as Enter, Onclick, and Onmouseover.

ASP.NET Custom Server Controls are very handy tool to use in your web forms. User controls prove inefficient in advanced scenarios. ASP.NET Custom Server Controls arerepparttar 133471 compiled code that makes them user friendly. You should writerepparttar 133472 ASP.NET Custom Server Controls in code, thereby view it inrepparttar 133473 visual designer with full properties and design-time features. You can create a ASP.NET Custom Server Controls by inheriting one ofrepparttar 133474 base control classes. These classes have allrepparttar 133475 functionality that is needed for a server control. Therefore, you just have to modify some ofrepparttar 133476 programming aspects to suit your requirements.

Cont'd on page 2 ==>
 
ImproveHomeLife.com © 2005
Terms of Use