How many types the Authentication IIS Provided?
Is Form-authentication is provided by of IIS?
if no,then how it works?
How many types the Authentication IIS Provided? Is Form-authentication is provided by of IIS?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Both IIS 6 and 7 natively support:
In IIS6 Forms Authentication is provided separately by ASP.NET because ASP.NET is not an integral part of IIS6. This is why, out of the box, it is not possible to secure non-ASP.NET assets such as ASP pages, images or plain HTML pages using Forms Authentication.
Requests for these types of files never hit the ASP.NET pipeline because they are handled directly by
http.sysor the classic ASP ISAPI filter.In a default install of ASP.NET on IIS6 only the .NET page types can be secured by ASP.NET Forms Authentication: .aspx, .asmx, .ashx etc.
This is because these page types are mapped to the ASP.NET ISAPI filter:
If you wanted to secure static content such as
.html,.jpgetc using ASP.NET Forms Authentication then you’d need to map these extensions to ASP.NET’s ISAPI filter or do a wildcard mapping in IIS6.In IIS7 the ASP.NET runtime is integrated into IIS so IIS7 natively supports Forms Authentication for all types of files and requests including ASP, PHP and so on.
IIS7 also supports the following additional authentication mechanisms:
IIS 6 also supports: