We have a huge web application ( public web site ) and in order to improve performance we decided to generate some of our pages as static html pages, and have them physically stored on the IIS, so when request will be made, IIS will serve the request itself,
without involving asp.net pipeline. The only problem is our website's users should pass authentication, which is Forms authentication. And our navigation menu will reference to both aspx and html files, and the question is will this be secure ? Is there any
way to integrate authentication on both asp.net and IIS ? I would really like to hear your considerations guys, maybe someone of you have dealt with this before and can advise me.
_Manvel_
Contributor
4240 Points
922 Posts
IIS and ASP.NET authentication integration
Oct 28, 2011 04:00 PM|LINK
Hi guys,
We have a huge web application ( public web site ) and in order to improve performance we decided to generate some of our pages as static html pages, and have them physically stored on the IIS, so when request will be made, IIS will serve the request itself, without involving asp.net pipeline. The only problem is our website's users should pass authentication, which is Forms authentication. And our navigation menu will reference to both aspx and html files, and the question is will this be secure ? Is there any way to integrate authentication on both asp.net and IIS ? I would really like to hear your considerations guys, maybe someone of you have dealt with this before and can advise me.
Thanks beforehand !
DarrellNorto...
All-Star
86555 Points
9624 Posts
Moderator
MVP
Re: IIS and ASP.NET authentication integration
Oct 28, 2011 05:18 PM|LINK
In IIS 7 this is easy:
http://learn.iis.net/page.aspx/244/how-to-take-advantage-of-the-iis-integrated-pipeline/
In IIS 5-6, follow these instructions:
http://www.15seconds.com/issue/070104.htm
Darrell Norton's Blog
Please click "Mark as Answer" if this helped you.
_Manvel_
Contributor
4240 Points
922 Posts
Re: IIS and ASP.NET authentication integration
Nov 01, 2011 04:08 PM|LINK
Thanks for the quick response !