Asp.net MVC

Asp.Net Mvc Ajax Project Step by Step

This Asp.Net Mvc using Ajax Project will teach you how to do basic database functions that are CREATE RETIEVE UPDATE and DELETE. using Microsoft sqlserver. The INSERT, SELECT, UPDATE and DELETE statements can be used in any database system, because this is support by all relational database systems.

We will learn how to INSERT, SELECT, UPDATE and DELETE in database by writing code to manage the records table in the database named vmschool.  records table consist of following columns Student course,name.

i explained the video tutorial below how the model view control works more clearly and how to associate with Ajax.

Index.cshtml

@{
    ViewBag.Title = "View1";
    Layout = "~/Views/Shared/styles.cshtml";
}

    <div class="row">
        <div class="col-sm-4">
            <div class="container">
                @using (Html.BeginForm("save","lolc",FormMethod.Post))
                {
                    <div class="form-group">
                        <div>
                            <label class="form-label">Course Name</label>
                            <input type="text" id="name" name="name" class="form-control" placeholder="Name" />
                        </div>
                       

                         <div>
                                <label class="form-label">Fee</label>
                                <input type="text" id="fee" name="fee" class="form-control" placeholder="Fee" />
                        </div>

                        <div>
                                <button type="button" id="save" class="btn btn-info" >




Layout.cshtml

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@ViewBag.Title - My ASP.NET Application</title>
    @Styles.Render("~/Content/css")
    @Scripts.Render("~/bundles/modernizr")

</head>
<body>
    <div class="navbar navbar-inverse navbar-fixed-top">
        <div class="container">
            <div class="navbar-header">
                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button>
                @Html.ActionLink("Application name", "Index", "Home", null, new { @class = "navbar-brand" })
            </div>
            <div class="navbar-collapse collapse">
                <ul class="nav navbar-nav">
                    <li>@Html.ActionLink("Home", "Index", "Home")</li>
                    <li>@Html.ActionLink("About", "About", "Home")</li>
                    <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
                </ul>
                @Html.Partial("_LoginPartial")
            </div>
        </div>
    </div>
    <div class="container body-content">
        @RenderBody()
        <hr />
        <footer>
            <p>&copy; @DateTime.Now.Year - My ASP.NET Application</p>
        </footer>
    </div>

    @Scripts.Render("~/bundles/jquery")
    @Scripts.Render("~/bundles/bootstrap")
    @RenderSection("scripts", required: false)
</body>
</html>

StudentController

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using WebApplication21.Models;

namespace WebApplication21.Controllers
{
    public class lolcController : Controller
    {

        lolcschoolEntities db = new lolcschoolEntities();
        //
        // GET: /lolc/
        public ActionResult Index()
        {
            return View();
        }



        public ActionResult GetCourses()
        {
            using (lolcschoolEntities db = new lolcschoolEntities())
            {

                var courses = db.records.ToList();
                return Json(new { data = courses }, JsonRequestBehavior.AllowGet);

            }
          
        }

        [HttpGet]

        public JsonResult Edit(int Id)
        {
            var course = db.records.Where(a => a.id == Id).FirstOrDefault();
            return Json(course, JsonRequestBehavior.AllowGet);
        }



        public JsonResult Remove(int Id)
        {

            bool status = false;

            var course = db.records.FirstOrDefault(a => a.id == Id);

            if(course != null)
            {
                db.records.Remove(course);
                db.SaveChanges();
                status = true;
            }

            return new JsonResult { Data = new  { status = status } };

        }


        public ActionResult save(record rec)
        {

            bool status = false;

            if(ModelState.IsValid)
            {
                using(lolcschoolEntities db = new lolcschoolEntities())
                {

                    if (rec.id > 0)
                    {
                        var v = db.records.Where(a => a.id == rec.id).FirstOrDefault();
                        if(v != null)
                        {
                            v.coursename = rec.coursename;
                            v.fee = rec.fee;
                            db.Entry(v).State = EntityState.Modified;
                        }
                        }
                        else
                        {
                            db.records.Add(rec);
                        }
                        db.SaveChanges();
                        status = true;
                    }
                }
            return new JsonResult { Data = new { status = status } };       
   }

  }
}

i have attached the video link below. which will do this tutorials step by step.

 

admin

Recent Posts

Laravel 11 CRUD Application

In this tutorial will teach Laravel 11 CRUD Application step by step. Laravel  11 CRUD…

3 weeks ago

How to make Times Table in React

in this tutorials we will be talk about how to make a times table in…

1 month ago

Laravel Tutorial: How to Add Numbers Easily Laravel 10

In this tutorials will teach How to add two numbers in Laravel 10. (more…)

1 month ago

Build Full-Stack Node.js MongoDB CRUD App with JWT Authentication

In this tutorial, we will teach the process of building a full-stack application using Node.js,…

2 months ago

Hospital Management System using OOP Java and MySQL

In this tutorial, we will explin you through the process of building a Hospital Management…

3 months ago

Mastering JavaScript OOP Inheritance

Inheritance in JavaScript using classes. You have a Person class as the superclass, an Employee…

3 months ago