• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Forms-based security in ASP.NET

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?
 
Back
Top