| by Achyut Kendre | No comments

What is MVC? How to use ASP.NET Core?

Example : https://drive.google.com/file/d/12vVMoD8pX9SOmKiwcmVzqkChh9D6WcDw/view?usp=sharing ASP.NET Core support MVC design pattern where M stands for Model, V is called View & C stands for Controller i.e. Model View Controller design pattern. What is Design Pattern? Design Pattern tells you to write a code so that you will get some kind of advantage. We have so many design […]

Read More
| by Achyut Kendre | No comments

Built in Middleware’s in ASP.NET Core.

Example Code: https://drive.google.com/file/d/1yxnw_0Urbg8a7EMSczlcS8-pNslkRYEM/view?usp=sharing ASP.Net Core provides you various built in middleware, in this article we will have a look at few middleware’s. ASP.NET Core is a modular framework. There are many middleware plug-ins available which can be used in our application.You can add the built in middle ware in request pipe line in same way, […]

Read More
| by Achyut Kendre | No comments

What is ViewModel in ASP.NET Core?

View Model is dummy model that contains public properties those need to be represented in a View. View Model will be crated only for view. We can say it is just used to carry data from action to view or view back to action. View Model can be used in following situations – If you […]

Read More
| by Achyut Kendre | No comments

What is Middleware in ASP.NET Core?

Example Link https://drive.google.com/file/d/1oJHRNj5fKTXUg6qgjIjPdhv4zkekhkbn/view?usp=sharing A Middleware is nothing but a component (class) which is executed on every request. Middleware is a software component that are assembled into an application request pipeline, before going in detail we will try to understand the startup class in details. Main Method in ASP.Net Core? Initially ASP.NET Core application stars as […]

Read More
| by Achyut Kendre | No comments

What is End Point Routing in ASP.NET Core?

Example Code: https://drive.google.com/file/d/1x4ve8sjVHs_PNDRN9ZEDWdLQ0LrEUvmt/view?usp=sharing Endpoint routing is a feature newly introduced in ASP.NET Core 3.0 that enables you to provide routing information to middleware in the request processing pipeline. ASP.NET Core MVC 2.1 was performed at the end of the request processing pipeline. As a result, route information (such as which action method needs to be […]

Read More
| by Achyut Kendre | 538 comments

What is ASP.NET Core?

ASP.NET is a popular web-development framework for building web apps on the .NET platform. ASP.NET Core is the open-source version of ASP.NET, that runs on macOS, Linux, and Windows. ASP.NET Core was first released in 2016 and is a re-design of earlier Windows-only versions of ASP.NET.Using ASP.NET Core we can develop – Cloud Web Apps. […]

Read More
| by Achyut Kendre | No comments

What is .NET Core?

What is .NET Core? .NET Core is an open-source, general-purpose development platform. You can create .NET Core apps for Windows, macOS, and Linux for x64, x86, ARM32, and ARM64 processors using multiple programming languages. .NET Core and APIs are provided for cloud, IoT, client UI, and machine learning.The project is primarily developed by Microsoft and […]

Read More
| by Achyut Kendre | No comments

HTML 5 – Geo Location API

The HTML5 geolocation feature lets you find out the geographic coordinates (latitude and longitude numbers) of the current location of your website’s visitor. This feature is helpful for providing better browsing experience to the site visitor. Check for Browser compatibility The geolocation property of the global navigator object can be used to detect the browser […]

Read More
| by Achyut Kendre | No comments

What is Web worker in HTML 5?

When executing scripts in an HTML page, the page becomes unresponsive until the script is finished. Even when you want to execute the multiple scripts you need to execute it sequentially, you can not execute it paralally. A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the […]

Read More
| by Achyut Kendre | No comments

What is Web Storage in HTML5?

The HTML5’s web storage feature lets you store some information locally on the user’s computer, similar to cookies. Web storage is more better option than the cookies, as per security is concern both are same. The information stored in the web storage isn’t sent to the web server as opposed to the cookies. Cookies let […]

Read More