Monday 5 November 2018

Quiz application in asp net mvc part 1







Download the source code

Ajax with MVC (Insert data using ajax in asp.net mvc)







<script src="~/Scripts/jquery-1.10.2.min.js"></script>



<script>



    $(document).ready(function () {



        $("#btnSubmit").click(function () {



            $("#loaderDiv").show();



            var data = $("#myForm").serialize();



            $.ajax({



                type: "POST",

                url: "/Home/Index",

                data: data,

                success: function (response) {

                    $("#loaderDiv").hide();

                    alert("Question Successfully inserted......");

                }



            })

        })





    })





</script>


Pass Dynamically Added Html Table Records List To Controller In Asp.net MVC

Controller Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using ...