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…

ASP.NET Core Razor Pages vs MVC: How Do Razor Pages Fit in Your Toolbox?

ASP.NET Core Routing
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…

ASP.NET Tutorial – How to Dynamically Generate Sitemaps for Your ASP.NET Site
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…

ASP.NET Core and 502 Bad Gateway Response
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…

Differences Between ASP.NET SignalR and ASP.NET Core SignalR
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…

ASP.NET Tutorial – How to Using Flexigrid in ASP.NET?
Lightweight but rich data grid with resizable columns and a scrolling data to match the headers, plus an ability to connect to an xml/json based data source using Ajax to load the content. Similar in concept with the Ext Grid…

ASP.NET Tutorial – How to Implement Owin Pipeline Using ASP.NET Core
Create C# project of Asp.net Core web application using fully .Net framework and name it “OwinCore”. And in the next part select a template of Empty. I don’t explain more in Asp.net Core and i assumed you have familiar with…

ASP.NET Tutorial – Converting Your ASP.NET Web Forms Application to ASP.NET MVC
If you want to build a Web application quickly, do it with ASP.NET Web Forms. However, you have to be willing to give up a lot: client-side coding and Ajax is more awkward in Web Forms than MVC, you won’t…

ASP.NET Tutorial – An ASP .NET Application for Data Editing
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…

ASP.NET Tutorial – Easy to Generic Handlers in ASP.NET Core
ASP.NET Core ASP.NET is an open-source server-side web application framework designed for web development to produce dynamic web pages. It was developed by Microsoft to allow programmers to build dynamic websites, web applications, and web services. .NET Core is a…