How to Insert Data Into Database Using AngularJS in Asp.net MVC

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

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

  • @CsharpSpace
    @CsharpSpace  7 лет назад

    For full Source Code and Step to Step Description visit URL: tutorialslink.com/Articles/How-to-insert-data-in-database-using-Angularjs-in-Aspnet-MVC-application-/36

  • @softworldservices459
    @softworldservices459 5 лет назад

    For full source code please visit ruclips.net/video/n0ms3Tlmgks/видео.html

  • @sathya1508
    @sathya1508 5 лет назад

    Thanks for the video!!! Nice try... @9:52 actually starts the MVC code part

  • @manojtyagi2686
    @manojtyagi2686 7 лет назад

    sir plz help me i have problem in check box list (how to save and edit check box list ,value for check box list will come from database)in anngularjs

  • @MuhammadIdris-ss9nl
    @MuhammadIdris-ss9nl 6 лет назад

    Useful tutorial, Thank u so much

  • @dharagohel844
    @dharagohel844 6 лет назад

    please submit checkbox and radiobuttorn value also please.

  • @Tracks777
    @Tracks777 7 лет назад

    When is your next video? :D Keep it up!

    • @CsharpSpace
      @CsharpSpace  7 лет назад

      +MisterBassBoost for get video updates please subscribe my channel and click on notification bell icon

  • @anilanandachakrabortty1416
    @anilanandachakrabortty1416 7 лет назад

    I have a one Question ....
    In the registration Time i want to check the email id is exists or not in the storeprocedur ..based on that i want to set a message in a output parameter in the storeprocedure ... That value how i will get in angularjs http post method????
    Where i have to change ?? If u tell it will be really healpfull for me....

    • @CsharpSpace
      @CsharpSpace  7 лет назад

      Get Output parameter value and perform opeartion like this:
      SqlParameter oblogin = new SqlParameter();
      oblogin.ParameterName = "@outputparam";
      oblogin.Direction = ParameterDirection.Output;
      oblogin.SqlDbType = SqlDbType.Bit;
      com.Parameters.Add(oblogin);
      con.Open();
      com.ExecuteNonQuery();
      int emailexist = Convert.ToInt32(oblogin.Value);
      con.Close();
      then on the basis of 'res' value, you can set your message in Controller
      like : if(emailexist==1)
      {
      returnvariable = "Email already exist...!";
      }
      else
      {
      // Message here
      }

    • @anilanandachakrabortty1416
      @anilanandachakrabortty1416 7 лет назад

      Thank you ....bro .... :)

  • @santhosraj6632
    @santhosraj6632 6 лет назад

    Thanq.. try to explain login page Using Entity frame work and empty. Database approch

  • @sonalghuge3805
    @sonalghuge3805 6 лет назад

    Hello i am getting an error of angular success function not available

  • @akashambesange290
    @akashambesange290 7 лет назад

    when I click on save , register function is called but it is receiving null values from angular controller,

    • @CsharpSpace
      @CsharpSpace  7 лет назад

      +Akash Ambesange check your model name with html control

    • @akashambesange290
      @akashambesange290 7 лет назад

      First 4 Properities of registration.cs are hardcoded

    • @CsharpSpace
      @CsharpSpace  7 лет назад

      +Akash Ambesange check this article tutorialslink.com/Articles/How-to-insert-data-in-database-using-Angularjs-in-Aspnet-MVC-application-/36

  • @awais-ur-rehmanshaikh9008
    @awais-ur-rehmanshaikh9008 7 лет назад

    sir how to create database

    • @CsharpSpace
      @CsharpSpace  7 лет назад

      Go to SQL Server Mangement Studio and Click on 'New Query' Button then Write query: Create database databasename

  • @anilanandachakrabortty1416
    @anilanandachakrabortty1416 7 лет назад

    Really helpfull video ... Bro Keep it up!.... :)