• .Net Core

    .Net Core MVC Bootstrap Modal Using With Jquery

    Hello guys, In this article, I will be talking about using bootstrap modal. I will answer the question of how I can use the bootstrap model with jquery. 1- I created .net mvc core with default template project. 2- I created FakeDataModel; namespace ModalWithJquery.Models { public class FakeDataModel { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string FullName { get; set; } } } 3- I added CreateModal(GET and POST) method to HomeController using Microsoft.AspNetCore.Mvc; using ModalWithJquery.Models; using System.Diagnostics; namespace ModalWithJquery.Controllers { public class HomeController…