How to enable attribute routing in ASP .NET MVC?

To enable attribute routing in asp.net mvc we must call a method named “MapMvcAttributeRoutes” in RouteConfig…

What is HTTPS ?

HTTPS stands for Hypertext Transfer Protocol Secure. It is related to web concepts and data transmissions…

What is HTTP ?

HTTP stands for Hypertext Transfer Protocol. It is related to Web Concepts and data transmissions over…

What is SQL Injection?

SQL Injection is a type of injection attack. An attacker can use it to make a…

Types of variables in c#

            The c# support two major variable types, they are “Value type and Reference type”. Int,…

The requested page cannot be accessed because the related configuration data for the page is invalid in MVC

The error message “The requested page cannot be accessed because the related configuration data for the…

How to use switch statement in c# ?

Switch statement is used to check a variable with a set of conditions called cases. We…

How to concat 2 strings without using any inbuilt string functions?

String is a character array.Find the length of the first character array, and find the length…

What is the difference between Managed code and Unmanaged code in .Net?

Managed code Vs Unmanaged code Any code running under CLR(Common Language Runtime)is called Managed code and…

Explain asp.net page life cycle?

Asp.net page life cycle passes through some series of process during their life cycle. Following are…