I have absolutely no knowledge of .NET but am tasked to think/solve a small issue. I have a web site written in .NET which authenticates users before allowing them in. Now there is a new directory containing static html pages that must be controlled using the same auth session. I want to achieve this without having to convert the html pages into .NET because the team working on that is not .NET aware. Also I don't want to have a web server specific auth configuration as that would mean the current auth session cannot be used. Is there a way to solve this? Ideally I would want to have some equivalent of a filter in java (though the filters are activated only if its a jsp) which checks the directory and checks the auth session. So my web app directory setting is this way --
App/
| --- All .NET
| --- htmldir/*.html
I want all of these to use the same auth management as the .NET app.
Any inputs are appreciated. Please point me to the documents or books to read up on.
- Pav