.NET FAQs Unleashed!
Skip Navigation Links
Interview questions on Design Patterns in .NET
ASP.NET Ajax Interview Questions
Interview questions related to security
C# Interview Questions
ASP.NET Interview Questions
Interview Questions in ASP.NET 2.0
Articles at dotnetuncle.com
Skip Navigation Links
OOPs questions in .NET
Questions on .NET Framework
ADO.NET Interview Questions
Short Answer questions in .NET
Frequently asked differences in .NET
Important commonly used Acronyms in .NET
MS SQL, Oracle SQL Interview Questions
 
    
Dotnetuncle's Tip:

  .NET 4.0 introduces a new concept called dynamic binding. This is done using the keyword dynamic. A variable may be declared without specifying its data type and only using the dynamic keyword.

    

What is Authorization in ASP.NET?

Authorization, in simple words means "which user can access which resource on a web server". Authentication of users may be set in the web.config file. See web.config snippet below...

<authorization>
   <deny users="?" /> <!-- Allow all users -->
     <!-- <allow users="[user list separated by commas]"
     roles="[role list separated by commas]"/>
     <deny users="[user list separated by commas]"
     roles="[role list separated by commas]"/>
   -->
</authorization>



Based on the user and the role, access to different folders across the website may be controlled using the authorization feature of ASP.NET

Security Authentication Process Website Admin Tool Authentication Authorization IIS Metabase Mixed Mode Authentication Provider Model & Personalization

More Interview Questions...
Skip Navigation Links
Interview questions on Design Patterns in .NET
ASP.NET Ajax Interview Questions
Interview questions related to security
C# Interview Questions
ASP.NET Interview Questions
Interview Questions in ASP.NET 2.0
Articles at dotnetuncle.com
Skip Navigation Links
OOPs questions in .NET
Questions on .NET Framework
ADO.NET Interview Questions
Short Answer questions in .NET
Frequently asked differences in .NET
Important commonly used Acronyms in .NET
MS SQL, Oracle SQL Interview Questions



    
Dotnetuncle's Tip:

  The .NET garbage collector automatically frees memory by eliminating the unused variables.