| by Achyut Kendre | No comments

What is Url Routing? How it works in ASP.NET MVC 5?

Example Link : https://drive.google.com/file/d/1LdPfsfpnRy0BytOUCaLJnauN6_9hRpnR/view The ASP.NET Routing module/Route Engine is responsible for mapping incoming browser requests to particular MVC controller actions. When you create a new ASP.NET MVC application, the application is already configured to use ASP.NET Routing. ASP.NET MVC uses Route Table for routing and Route table contains entires/recors called route and every route […]

Read More
| by Achyut Kendre | No comments

What is MVC? How to use ASP.NET Core?

Example : https://drive.google.com/file/d/12vVMoD8pX9SOmKiwcmVzqkChh9D6WcDw/view?usp=sharing ASP.NET Core support MVC design pattern where M stands for Model, V is called View & C stands for Controller i.e. Model View Controller design pattern. What is Design Pattern? Design Pattern tells you to write a code so that you will get some kind of advantage. We have so many design […]

Read More