What is ASP.NET Core? View Article Information Posted Date: 25. October 2018 Author: Anil Sharma Categories: ASP.NET MVC, ASP.NET vNext, ASP.NET Core Keywords: Asp.Net Core, define ASP NET Core, .NET Core framework, ASP.NET Core MVC, Interview Question Answers ASP.NET Core is a brand new cross-platform web framework built with .NET Core framework.It is not an update to existing ASP.NET framework. It is a complete rewrite of the ASP.NET framework. It was built from scratch in the effort to make a modular, scalable, super fast, configurable, cross-platform and easily extended web framework. [Continue Reading]
Introduction to Razor Pages in ASP.NET Core View Article Information Posted Date: 26. October 2017 Author: Anil Sharma Categories: ASP.NET MVC, ASP.NET, ASP.NET vNext, ASP.NET Core Keywords: Razor Pages, Asp.Net Core, ASP.NET Core prerequisites, Razor Pages project Razor Pages is a new feature of ASP.NET Core MVC that makes coding page-focused scenarios easier and more productive. One of new features of ASP.NET Core 2.0 is support for Razor Pages. Yes, those same pages that came times ago with WebMatrix. Today Razor Pages is subset of MVC on ASP.NET Core. Yes, support for Razor Pages comes with ASP.NET Core MVC meaning that Razor Pages application is technically MVC application. Also Razor Pages have same features as MVC views. [Continue Reading]
Introduction to ASP.NET Core View Article Information Posted Date: 25. October 2017 Author: Anil Sharma Categories: ASP.NET MVC, ASP.NET Core Keywords: Asp.Net Core, Introduction of ASPNET Core, Why Use AspNetCore, Feature of ASPNET Core ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-based, Internet-connected applications. With ASP.NET Core, you can: Build web apps and services, IoT apps, and mobile backends. Use your favorite development tools on Windows, macOS, and Linux. Deploy to the cloud or on-premises, Run on .NET Core or .NET Framework. [Continue Reading]
Custom Cookie Authentication In ASP.NET Core View Article Information Posted Date: 24. October 2017 Author: Anil Sharma Categories: ASP.NET MVC, ASP.NET, ASP.NET Core Keywords: Cookie Authentication in ASP.net Core 1.X, Asp.Net Core The alternative is to use ASP.net Core’s “Cookie Authentication” which allows you to use cookie based claims for a user, but authenticate the users yourself using your own data store, however that may work. That’s what this article is going to focus on. [Continue Reading]