| by Achyut Kendre | No comments

What is Controller & Action?

In previous article we told you that controller is c part of MVC who is responsible for logic part of the application, in this article we will elaborate more about the controller and action. What is Controller? Controller in ASP.NET MVC is just a class located in Controllers folder will have a suffix of Controller […]

Read More
| by Achyut Kendre | No comments

What is ASP.NET MVC 5?

What is design Patterns? Design patterns tells you how to write a code, design patterns provides you some set of guide lines, rules specifications if we follow them it will give us some advantage. Every design pattern has it’s own advantage. Few popular design patterns are – MVC MVP MVVM Repository and many more. What […]

Read More
| by Achyut Kendre | No comments

What is WPF? Why to use WPF?

Windows Presentation Foundation (WPF) is a UI framework that creates desktop client applications. The WPF development platform supports a broad set of application development features, including an application model, resources, controls, graphics, layout, data binding, documents, and security. We can say WPF is API to develop the desktop Applications on .NET Framework. Why Windows Presentation […]

Read More
| by Achyut Kendre | No comments

How to use extensions Method in LINQ?

LINQ also provides you extension methods those can be used to manipulate data, few extension methods are – Where(predicate):- it will get you all instances who satisfies the predicate.OrderBy(fieldname) :- sort the data in ascending orderOrderByDescending(fieldname) :- in descending orderSingle(predicate) : – find single instance who satisfies the predicate, if found returns it, if not […]

Read More
| by Achyut Kendre | No comments

What is LINQ? How to use LINQ ?

Example Code: https://drive.google.com/file/d/1CMK36IwA-9Bfay7H9jg71sBtvuCDnQ0d/view?usp=sharing LINQ is called Language Integrated Query Technology which allow you to query data from various data sources like – Database, XML ,JSON, Entities etc. LINQ is introduced in .NET 3.5 and Visual Studio 2008. The beauty of LINQ is it provides the ability to .NET languages(like C#, VB.NET, etc.) to generate queries […]

Read More
| by Achyut Kendre | No comments

How to use HTML Helpers in ASP.NET MVC?

Example Code: https://drive.google.com/file/d/1i3fuhlDZ-iWlrvn023UA1WahDNorFUeS/view?usp=sharing Html helpers are the extension methods of HTML Helper class use to generate html in a view. All Html Helpers are divided into following categories – Standard Helpers Strongly Typed Helpers Template Helpers View provides you a built in object called HTML of type Html Helper using which we can call those […]

Read More
| by Achyut Kendre | No comments

How to use Areas in ASP.NET Core?

Example Link : https://drive.google.com/file/d/1671rE4a499AQRI1tcoAIJLZQ1OWuKZHp/view?usp=sharing Areas provide a way to partition an ASP.NET Core Web app into smaller functional groups, each with its own set of Razor Pages, controllers, views, and models. An area is effectively a structure inside an app. For a large app, it may be advantageous to partition the app into separate high […]

Read More
| by Achyut Kendre | 2 comments

How to make AJAX request using jQuery?

Example : https://drive.google.com/file/d/1Ed49rtebyOtRC6sDW4PKscqpvMYRuR3W/view?usp=sharing jQuery provides you built in method to make AJAX request to sever and retrieve result. What is AJAX in jQuery? AJAX is called Asynchronous Java Script with XML , it enables us to make the sync request to the server and retrieve the result from the server to load it in UI […]

Read More
| by Achyut Kendre | 790 comments

How to implement End Point Routing in ASP.NET Core?

What is End Point Routing? Endpoint routing is a feature newly introduced in ASP.NET Core that enables you to provide routing information to middleware in the request processing pipeline. Before the introduction of endpoint routing, routing resolution in ASP.NET Core MVC was performed at the end of the request processing pipeline. As a result, route […]

Read More
| by Achyut Kendre | 37 comments

How to Travel DOM in jQuery?

J Query has built in methods to travel through DOM , it has following methods – first():-it will get you first element from selected elements.last():- it will get you last element from selected elements.next():- it will get immediate next element. nextAll():-it will get next all elements. prev():- it will get you immediate next element. prevAll():- […]

Read More