Image Upload in React with Asp.Net Core Web API

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

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

  • @CodAffection
    @CodAffection  4 года назад +3

    goo.gl/bPcyXW : Buy me a Coffee
    bit.ly/4dWUGYd : Part 2
    bit.ly/3MkvBrh : React Quiz App with Web API
    bit.ly/3Me2bxo : Everyone's favourite way of creating React forms
    bit.ly/2t0op0W : React CRUD with .Net Core API
    bit.ly/2N9QjkE : Master Detail CRUD with React & .Net Core API
    bit.ly/3Me2bxo : Everyone's favourite way of creating React forms

    • @trqza2616
      @trqza2616 3 года назад

      Hey i've followed your demo but whenever i submit the error "Object Reference not set to an instance of an object" at the code in 54:06 in your video. What should I do with that? Thanks

  • @webdevfs9361
    @webdevfs9361 11 месяцев назад +1

    This is exactly what i've been searching, thank you for this video. Im building an ecommerce project, and got stuck with my product images. Thanks.

  • @EmbraceHinduismBringPeace
    @EmbraceHinduismBringPeace 3 года назад +1

    Real Industry level Project ! Very well explained ,Thank you Sir

  • @easycodingbysethu
    @easycodingbysethu 6 месяцев назад

    Excellent and useful demonstration I would like to (definitely donate) after my financial situation slightly improves ! Thank you

  • @astroimagers
    @astroimagers 4 года назад

    This was a great way to present React. Can't wait for you to present Blazor Web Assembly version of this tutorial. I want to hear your thoughts.

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

    So usefully video, thanks

  • @troyjenkins7189
    @troyjenkins7189 2 года назад

    Great video! Thank you!

  • @ankurworld
    @ankurworld 8 месяцев назад

    great tutorial

  • @md.naimurrahman8901
    @md.naimurrahman8901 3 года назад

    Thanks a Lot. From Dhaka

  • @mohammadrafiee9072
    @mohammadrafiee9072 2 года назад

    for getting the src of file i used src: URL.createObjectURL(e.target.files[0]) and it worked fine 😀 Thanks For The Video

  • @zytango8476
    @zytango8476 3 года назад

    perfect tutorial, thank you very much!

  • @rimshaimran6352
    @rimshaimran6352 2 года назад

    Thank You For This Video

  • @polarnemovbt
    @polarnemovbt 3 года назад

    Sos grande loco! Gracias! Thanks bro! you rock!

  • @leticiacaroline3304
    @leticiacaroline3304 2 года назад

    thanks for the video it helped me so much

  • @JerryAbah
    @JerryAbah 4 года назад +1

    Awesome tutorial, CodAffection. Keep up the good work.

  • @Ahmet_Altun
    @Ahmet_Altun 3 года назад

    Amazing content!
    Thank you for this video.
    I learned a lot of things.

  • @RicardoWarnermusic
    @RicardoWarnermusic 3 года назад

    me salvaste de una muy grande con este video me suscribo!

  • @chriscalver8595
    @chriscalver8595 8 месяцев назад

    Thank you Thank you Thank you

  • @md.nayonhossain6383
    @md.nayonhossain6383 3 года назад

    Thanks sir, very helpful video

  • @abhijeetab6670
    @abhijeetab6670 4 года назад +1

    You are the best 🤗🤗

  • @markmikhovych376
    @markmikhovych376 2 года назад

    U r the best!

  • @someonexd1961
    @someonexd1961 2 года назад

    Hey at 27:37 you make sure that if the user cancels the window then it resets. This isnt working for me. Has something changed in react or something?

  • @mansourikhalled9716
    @mansourikhalled9716 2 года назад

    i had a problem in craeting instance of complexe type class any solution pls !

  • @ethsongomez5613
    @ethsongomez5613 4 года назад

    Justo lo que buscaba, muchas gracias...!!

  • @AkshayPaunikar
    @AkshayPaunikar 4 года назад +5

    Can you do one video on react using typescript just for fun 🙂

  • @liko8019
    @liko8019 3 года назад +1

    59:22 BBBBOOOOOOMMMMM

  • @information_technologyg7834
    @information_technologyg7834 3 года назад

    is this image save on sql data base api's image file?

  • @arjunm.r8641
    @arjunm.r8641 3 года назад

    Is it possible create web api without entity framework?

  • @gamezblock7717
    @gamezblock7717 4 года назад +1

    how to prevent to upload pdf file after extension change from pdf to jpg

  • @diegochavezsoria
    @diegochavezsoria 4 года назад

    Cool video! What fonts are you using in visual studio tho? They look so cool

  • @rangabharath4253
    @rangabharath4253 4 года назад +2

    awesome

  • @haonguyen1367
    @haonguyen1367 3 года назад

    Thanks you, video very nice. But you can't show me how to upload multiple file. Please help me!

  • @jaicejaicer6903
    @jaicejaicer6903 2 года назад

    which font type did you use Sir?

  • @yathursangunam2983
    @yathursangunam2983 3 года назад

    How to resize the uploaded image?

  • @murphy_artz9326
    @murphy_artz9326 2 года назад

    My API isnt allowing empty string from the attribute "ImageName" , i always get an error .
    I currently put a placeholder name in it but how can i fix it?

    • @sandeeppondala4863
      @sandeeppondala4863 2 года назад

      Same issue

    • @sandeeppondala4863
      @sandeeppondala4863 2 года назад

      How to fix the issue...not able to hit the post acction method throwing 400 status.

    • @murphy_artz9326
      @murphy_artz9326 2 года назад +1

      @@sandeeppondala4863 [Column(TypeName = "nvarchar(100)")]
      [Required(AllowEmptyStrings = true),
      DisplayFormat(ConvertEmptyStringToNull = false)]
      public string? ImageName {get; set; }
      You change this in EmployeeModel.cs
      Reason: You have to allow emptyString and you have to stop the conversion of empty strings into null.

    • @sandeeppondala4863
      @sandeeppondala4863 2 года назад

      @@murphy_artz9326 thanks for the help

  • @manaligujarathi9057
    @manaligujarathi9057 2 года назад

    Getting error while adding the controller error : Pakage restore failed ,Rolling back packages changes...could u pls guid me in this?

    • @CodAffection
      @CodAffection  2 года назад

      did you try this solution here.
      stackoverflow.com/a/46144314/4133590

  • @manishraj-it2qv
    @manishraj-it2qv 3 года назад

    The continuous of the video hasn't uploaded yet. Please upload that

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

    Can you please share the source code for this project?

  • @mrniffels
    @mrniffels 2 года назад

    it's a real pain to follow along here. I have to pause it every two seconds because you're just cutting away so much. Other than that it's all well explained. thank you

  • @csoftcode3960
    @csoftcode3960 4 года назад

    Image Upload Zoom
    ruclips.net/video/EvuJsC-xaWs/видео.html

  • @gouravchoudhury9266
    @gouravchoudhury9266 3 года назад

    Hi the API is working fine locally but when it is uploaded to server it giving error "Invalid argument", status: 200, statusText: "OK" but file is not getting uploaded

    • @Gilgameshx
      @Gilgameshx 3 года назад

      Make sure you have the permits to write into the solution or destinatary folder bro

  • @liko8019
    @liko8019 3 года назад

    who scream on the background

  • @raghun1239
    @raghun1239 4 года назад +1

    bro pls do same in Django+ react

    • @CodAffection
      @CodAffection  4 года назад

      I'll try. thanks for the suggestion.