As part of the release of .NET Core 2.0, there are also some updates to ASP.NET. One of those is the addition of a new web framework for creating a “page” without the full complexity of ASP.NET MVC. New Razor Pages…

As part of the release of .NET Core 2.0, there are also some updates to ASP.NET. One of those is the addition of a new web framework for creating a “page” without the full complexity of ASP.NET MVC. New Razor Pages…
Routing is a pattern matching system that monitors the incoming request and figures out what to do with that request. Typically, it is a way to serve the user request. When a user request URLs from the server then URLs…
There are many tips to improve your ASP.NET site’s SEO but one of those, the importance of which is often underestimated is sitemaps. Sitemaps offer a way of informing Google and other search engines about the web pages on your ASP.NET site…
502 bad gateway error response is not like traditional 500 error which is mostly a code problem, this makes it even difficult to troubleshoot the root cause and I also see quite a few confuse from developers that why there…
A lot is demanded from Web applications today. Web apps are expected not only to function properly, but they need to do so with a great user experience. Users expect applications to be fast. They also expect applications to deliver…
Once a new project has been created, we need to define a persistent object class. To do this, the new class is added to the project. Make it the Customer class. The FirstName, LastName and Company properties of this class represent the values of the corresponding fields…
This tutorial builds a web API for managing a list of “to-do” items. A user interface (UI) isn’t created. The following diagram shows the basic design of the app. The client is whatever consumes the web API (mobile app, browser,…
The Runtime Environment of .NET Framework is Called Common Language Runtime. CLR can be considered as Virtual Machine (VM) component of Microsoft’s .NET framework. It manages the execution of Managed Code (.NET Programs). CLR uses a just-in-time (JIT) compiler which converts…
This would be a very short article on how to add dependencies in .NET Core. Well, there are many ways to achieve this. One is via Visual Studio and another way is through command prompt. Let’s quickly have a look.…
Let us see how to use Distinct() and FirstOrDefault() clauses with the help of linq.js in .NET Web Application. Advantage It is useful to write simple LINQ queries from Entityframework to client side with LinqJS. It’s better for validating data…