New Blazor Features in .NET 8 | A Complete Overview

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 26

  • @MuthuKumaran-md7tv
    @MuthuKumaran-md7tv 2 месяца назад +1

    Best presentation ever for render modes , interactivity.. Thank you..

    • @codeganesh
      @codeganesh  14 дней назад

      Thank you so much Muthu.

  • @CookieDD-oy2ph
    @CookieDD-oy2ph Год назад +3

    I would say this is by far the best .Net8 video with great explanations. Thank you so much!

    • @codeganesh
      @codeganesh  Год назад

      Glad the video was helpful. You're welcome!

  • @MihaiMoisei
    @MihaiMoisei Год назад +3

    Best presentation of .NET 8 new feature. Thanks.

    • @codeganesh
      @codeganesh  Год назад

      Thanks Mihai! You're welcome!

  • @jonaszjonasz5752
    @jonaszjonasz5752 10 месяцев назад +1

    Great tutorial, I'm very pleased. A very good teacher

    • @codeganesh
      @codeganesh  10 месяцев назад

      Hi Jonas! Thanks for your comment. Glad you liked my content. Thanks once again.

  • @arthurkelley
    @arthurkelley Год назад +2

    I started watching your videos to learn about new .NET 8 features, better than reading msdn.

    • @codeganesh
      @codeganesh  Год назад

      Glad you found the content useful. Thanks for watching.

  • @MrFEMGM
    @MrFEMGM 10 месяцев назад +1

    It really is an excellent course. Very concrete and clear.

    • @codeganesh
      @codeganesh  10 месяцев назад

      Thank you so much! Glad you found it helpful.

  • @ShinkoNet
    @ShinkoNet Год назад +2

    this is very clear and well made, thanks!

    • @codeganesh
      @codeganesh  Год назад

      Thank you so much. Glad the video was helpful. You're welcome!

  • @WindWolf28
    @WindWolf28 Год назад +1

    Very informative video with lots of examples. Thank you for your hard work!

    • @codeganesh
      @codeganesh  Год назад

      Glad the video was helpful. You're welcome!

  • @camrws
    @camrws Год назад +2

    this is insanely condensed. great video

    • @codeganesh
      @codeganesh  Год назад

      Thanks for your comment. Appreciate it!

  • @prajwalrangegowda
    @prajwalrangegowda Год назад +2

    Amazing collection, Thank you!

    • @codeganesh
      @codeganesh  Год назад

      Thanks Prajwal! You're welcome!

  • @StefanoLabate
    @StefanoLabate Год назад +2

    so useful, thank you my friend!

    • @codeganesh
      @codeganesh  Год назад

      Glad you liked it bro. You’re welcome!

  • @AmitSharma-bl1ur
    @AmitSharma-bl1ur Год назад +1

    Thanks sir you are the first Indian who giving so well info about blazor 8 , sir I want to know how to get Form get value as you give examble of Form post

    • @codeganesh
      @codeganesh  Год назад

      Hi Amit! Thanks for your comment. To get the value from the form input, you can do the following (See below for the entire code): In the @code block, define a public string property called "MyInput", and decorate it with the [SupplyParameterFromForm] attribute. Then, create a private async method called OnFormSubmit that returns a Task. Inside this method, you can access the MyInput value, and use it. Now, define an @onsubmit attribute for the form element and set it to "OnFormSubmit". For the input element inside, set the name attribute to "MyInput", id attribute to "MyInput" and @bind attribute to "MyInput". Also, for the current .NET 8 RC 2, make sure you type and enter "install-package Microsoft.Net.Compilers.Razor.Toolset -pre" in the Package manager Console. Otherwise, you will get an error.


      Submit
      @code{
      [SupplyParameterFromForm]
      public string MyInput { get; set; }
      private async Task OnFormSubmit()
      {
      // Access MyInput here
      }
      }
      Note: Make sure in the Package Manager Console, you use "install-package Microsoft.Net.Compilers.Razor.Toolset -pre".
      Hope that helps!

    • @AmitSharma-bl1ur
      @AmitSharma-bl1ur Год назад

      @@codeganesh thanks for quick response sir this page is called by outside from my application by third party vendor (payment gateway) and they are passing some encrypted value that i want to receive and decrypt my question is how to get this value on my server razor page oninitilizeasync method

  • @atikhassan5905
    @atikhassan5905 Год назад

    Sir, could you please share with us more content about dot net 8?