Skip to main content

Asp.Net Security

  • Authentication – it is the process of ensuring the user’s identity and authenticity. ASP.Net allows four types of authentication system:
    1. Windows Authentication
    2. Forms Authentication
    3. Passport Authentication
    4. Custom Authentication
  • Authorization – it is the process of defining and allotting specific roles to specific users.
  • Confidentiality – it involves encrypting the channel between the client’s browser and the web server.
  • Integrity – it involves maintaining the integrity of data. For example, implementing digital signature.

Comments

Popular posts from this blog

ASP.Net Page Life Cycle

The ASP.Net life cycle could be divided into two groups: Application Life Cycle Page Life Cycle ASP.Net Application Life Cycle: The application life cycle has the following stages: User makes a request for accessing application resource, a page. Browser sends this request to the web server. A unified pipeline receives the first request and the following events take place: An object of the ApplicationManager class is created. An object of the HostingEnvironment class is created to provide information regarding the resources. Top level items in the application are compiled. Response objects are created . the application objects: HttpContext, HttpRequest and HttpResponse are created and initialized. An instance of the HttpApplication object is created and assigned to the request. The request is processed by the HttpApplication class. Different events are raised by this class for processing the request. ASP.Net Page Life Cycle: When a page is requested, it is loaded...

Types Of Join In SQL

Sql joins are used to fetch/retrieve data from two or more data tables, based on a join condition. A join condition is a relationship among some columns in the data tables that take part in Sql join. Basically data tables are related to each other with keys. We use these keys relationship in sql joins. Inner Join Outer Join Cross Join Cross Join