Web API Authentication .NET 5

In the last article we implemented the basic operations for our .NET 5 Web API. If you have missed the last article, you can read it here. In this article we are going to implement the authentication to secure our API. So we are adding JWT token based authentication to the API. Token-based authentications are…

.NET 5 Web API – Part 2

Hello everyone! Here we are continue to build our .NET 5 Web API. If you have missed the first part, please visit the introduction here. In the previous article, we have implemented the method to get all the movies. So here we can start with the method, Get movie by id to get a single…

.NET 5 Web API Introduction

.NET 5.0 officially released on November 10, 2020. As per Microsoft, .NET 5 is the next step of the .NET Core. Also .NET Framework and .NET  Core will become a single framework in the next .NET 6 release. Its always good to be prepared, So today we are going to try to build a .NET…

Jquery Autocomplete text box in MVC

How to implement Jquery autocomplete in MVC Autocomplete texts boxes are very useful when a user searches on the website. Jquery autocomplete function suggests the already available data to the user and minimize the time for the search. I have created a new controller for this and added a view. In the controller we have two…