Category: ASP.NET

  • ASP.NET Security : 2- More Basics

    In my previous post I showed that ASP.NET application goes through 3 security context levels and discussed the first one : IIS Level ASP.NET worker process level ASP.NET pipeline level In this post, I will talk a little on ASP.NET worker process level, before starting I would like to point out the development environment we…

  • ASP.NET Security : 1- Basics

    Lately at SCS I have been assigned to build up the security module and related tasks in the Real Estate Management System we are building. So I decided to share what I have learned in this past period and of course to hear from the community to find optimal solutions for the scenarios I worked…

  • The ASP.NET Configuration Model

    ASP.NET as well as .NET applications have one more excellent feature, ASP.NET uses a flexible configuration management system that keeps the application configuration separate from application code. ASP.NET configuration is stored in XML files with the .config extension, which makes it easy for users to change it before, during and after deployment. The configuration file…