17 - State Management in asp.net mvc

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ธ.ค. 2024

ความคิดเห็น • 21

  • @olatundeadebayo6112
    @olatundeadebayo6112 3 ปีที่แล้ว +1

    This is the simplest explanation I have seen on TH-cam so far. Great job ma.

    • @augustinedraven1329
      @augustinedraven1329 3 ปีที่แล้ว

      I know it is kinda off topic but does anybody know of a good website to stream new series online ?

  • @waghdipak2358
    @waghdipak2358 4 ปีที่แล้ว +2

    the way you conclude all the concepts at the end is really good to get the summary and to remember all the things....thanks

  • @amitskhandelwal
    @amitskhandelwal 4 ปีที่แล้ว +1

    Mam your explanation is very good. You deserves millions views.

  • @sureshbabugangavarapu
    @sureshbabugangavarapu 4 ปีที่แล้ว +2

    Very clean explanation 👍. Thank you

  • @bharathiganneboyina3724
    @bharathiganneboyina3724 3 ปีที่แล้ว +1

    Good explanation

  • @mohammedreena3923
    @mohammedreena3923 2 ปีที่แล้ว +1

    quite informative

  • @girishparganiha3694
    @girishparganiha3694 5 ปีที่แล้ว +1

    Hi...Very Nicely Explained the concepts. Thanks !!!

  • @raghadfahad211
    @raghadfahad211 3 หลายเดือนก่อน +1

    learn a lot

  • @yogij17
    @yogij17 2 ปีที่แล้ว

    Can we store session in sql in mvc? How?

  • @kazialauddin5947
    @kazialauddin5947 4 ปีที่แล้ว +1

    really good

  • @AjinkyaTambade
    @AjinkyaTambade 6 หลายเดือนก่อน

    can i get this code ???

  • @kothaprashanthreddy8023
    @kothaprashanthreddy8023 5 ปีที่แล้ว

    While adding arrays to viewbag.....first we need to create array obj...string[ ] obj = new string[ size];
    But you have not written above code and you have done it directly....Can you please expain mam..how you have given vales to array without creating obj............Thank u..

    • @CodeSemantic
      @CodeSemantic  5 ปีที่แล้ว

      If you observed it carefully, I created instance of it, but i didn't specify object name
      new string[ ] { "red", "green", "blue" }
      'new' keyword is used to create object.
      Since array is initialized with values memory will allocated for number of element that are initialized.

  • @avinashdudala9490
    @avinashdudala9490 3 ปีที่แล้ว

    Hi Mam I tried below code
    ViewBag.ID = Convert.Int32(Request ["id"]);
    Passing a id value as 1 from URL example: localhost://employee/1
    When I run app displayed with 0
    In cshtml file I wrote as
    @ViewBag.ID . can you please reply

    • @avinashdudala9490
      @avinashdudala9490 3 ปีที่แล้ว

      Hi Mam can you reply back to my doubt above

    • @CodeSemantic
      @CodeSemantic  3 ปีที่แล้ว +1

      Hi Avinash, Thanks for watching video.
      You have to use RouteData.Values["id"] instead of Request["id"] because it is a Route Parameter and not a Querystring.
      I'll also suggest you to watch following video to collect the Request value :
      Collecting Request values in Action Method in asp.net mvc : bit.ly/3ddXHVx

    • @avinashdudala9490
      @avinashdudala9490 3 ปีที่แล้ว

      Thanks for reply mam ,also can you send me your email address and any Best C# tutorial series or websites to Master

    • @avinashdudala9490
      @avinashdudala9490 3 ปีที่แล้ว

      hi Mam can you reply