MVC with SweetAlert2 - Introduction - Intercepting a Form - ASP.NET Core MVC

Поділитися
Вставка
  • Опубліковано 16 січ 2025

КОМЕНТАРІ • 10

  • @gavilanch3803
    @gavilanch3803  2 роки тому

    Get my React and ASP.NET Core course with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=react-and-asp-net-core
    Get my Angular and ASP.NET Core course with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=angular-and-asp-net-core
    Get my Entity Framework Core course with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=entity-framework-core-eng
    Get my Udemy courses with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=all-my-courses

  • @shunfa65
    @shunfa65 3 дні тому

    it's helpful, thank you.

  • @Tamer_Ali
    @Tamer_Ali 2 роки тому

    Awesome video Mr.Felipe. waiting for the next 👍

  • @lucasa7175
    @lucasa7175 Рік тому

    Thank you, it helped me!

  • @mumk
    @mumk 10 місяців тому

    Thank you so much!

  • @Kasem97
    @Kasem97 5 місяців тому

    Great !!!

  • @muslehhaj4164
    @muslehhaj4164 11 місяців тому

    Thanks a lot 👌

  • @FnOTradingLearner
    @FnOTradingLearner Рік тому

    Does it works with code behind file in razor page other than @section script ... in .cshtml.cs file ?
    How to use in code behind file

  • @rehmanmustafa3535
    @rehmanmustafa3535 Рік тому

    I am trying to delete with Sweet alert. i want to delete a record from a table but it is always deleting the first record

    • @attilaguba856
      @attilaguba856 Рік тому

      Might be you are using FirstOfDefault method instead use Find(id) and should be work!
      here is mine is working , i'm using Generics repository :
      public void Delete(int id)
      {
      T exists = _table.Find(id);
      _table.Remove(exists);
      }