skip to main |
skip to sidebar
The backup files are the copies of the
1. MetaBase.xml , the metabase configuration file and
2. MSSchema.xml , the matching metabase schema file.
www.codecollege.NET
MMC tools (called snap-ins) can be used to administer networks, computers, services,
applications and other system components. MMC does not perform administrative functions, but hosts a variety of Windows and non-Microsoft snap-ins that do.
www.codecollege.NET
Microsoft Management Console is a framework that unifies and simplifies day-to-day system management tasks on Windows by providing common navigation, menus, toolbars, and workflow across diverse tools.
www.codecollege.NET
regsvr32 %systemroot%\system32\inetsrv\inetmgr.dll
www.codecollege.NET
Microsoft Management Console
www.codecollege.NET
Internet Information Server.
www.codecollege.NET
There are two types of Authorizations, they are:
1. File authorization
2. URL authorization
www.codecollege.NET
It is an Authorization which checks the access control list (ACL) of the .aspx or .asmx handler file to determine whether a user has access to the file.
www.codecollege.NET
It is an authorization which maps users and roles to URLs in ASP.NET applications.
www.codecollege.NET
VB
==
Dim curUser As String = _
System.Security.Principal.WindowsIdentity.GetCurrent().Name
C#
==
String curUser =
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
www.codecollege.NET
Windows Authentication as the checking is done with the Active Directory.
www.codecollege.NET
1. When the server and client are running over Windows 2000 or higher.
2. When an AD with Domain Controller which automatically acts as a key distribution center.
www.codecollege.NET
1. NTLM NT (LAN Manager).
2. Kerberos 5.
www.codecollege.NET
1. It works only with IE5.0 or later.
2. Works only when the virtual directory under IIS is controlled by or authenticated by Windows Active Directory domain controller.
www.codecollege.NET
You can do that by the following method,
Request.IsAuthenticated();
www.codecollege.NET
Integrated Windows Authentication does not require user intervention.
www.codecollege.NET
Basic Authenticaion is supported by almost all browsers.
www.codecollege.NET
It is a strategy in Windows Authentication where the user name and password are not sent as clear text. But a token of logged in user is sent.
www.codecollege.NET