GnatGoSplat
Golden Member
I'm changing some webpages over from ASP to ASP.NET.
Right now we are using forms-based security called from a COM DLL.
ASP.NET is not compatible with this COM, even when I use "aspcompat=true". This is because the COM DLL sets session variables which each individual ASP checks for to ensure a user is successfully logged in.
The only examples I've seen for forms-based security in ASP.NET is using web.config, but that applies sweeping security to ALL aspx pages within a folder, and I want selective page-level security.
What is the best way to get page-level security in .NET?
Right now we are using forms-based security called from a COM DLL.
ASP.NET is not compatible with this COM, even when I use "aspcompat=true". This is because the COM DLL sets session variables which each individual ASP checks for to ensure a user is successfully logged in.
The only examples I've seen for forms-based security in ASP.NET is using web.config, but that applies sweeping security to ALL aspx pages within a folder, and I want selective page-level security.
What is the best way to get page-level security in .NET?