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…
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…
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…
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…
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 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…