How to Upload Video using Angular 8 with WebAPI

Introduction In this article, you’ll learn how to upload and view videos using Angular 8 with Web API. we’ll also be creating a demo project for better understanding. This article is very useful for those who are getting started with Angular. Prerequisites 1. Angular 82. ASP.NET Web API3. SQL Server4. …

Implementing Remote Validation In MVC 5 Using Remote Attribute

Remote validation utilizes to make server calls to validate data. without posting the entire form to the server when server-side validation is desirable to the client-side. It’s everything done by setting up a model and controller which is pretty neat. Assume if, any field in a database table must be …

How to Implement Pagination in ASP.NET MVC Application.

Introduction In this article, we are going to implement Pagination in ASP.NET MVC Application with the help of Visual Studio. Before proceeding further, I would recommend that you install PagedList MVC using the NuGet package manager then let’s a go-to visual studio and click on tools Library Package Manager. Then …

How to Implement Multiple Tables In ASP.NET MVC Application

Introduction In this article, we’ll discuss how to implement multiple tables in ASP.NET MVC Application. In the previous article, we have done Entity Framework in ASP.NET MVC Application. Create Table In the SQL Server database, we have two tables. First, we have a TblDepartment table which has got Departments data …