#Expected Output
#Controller Code
#Model (MenuItem.cs)
# View Page (Index.cshtml)
#Controller Code
using MVCTutorial.Models; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading; using System.Web; using System.Web.Mvc; namespace MVCTutorial.Controllers { public class TestController : Controller { public ActionResult Index() { return View(); } public ActionResult SideMenu() { List<MenuItem> list = new List<MenuItem>(); list.Add(new MenuItem { Link = "/Test/Index", LinkName = "Home" }); list.Add(new MenuItem { Link = "/Test/Login", LinkName = "Login" }); list.Add(new MenuItem { Link = "/Test/Registration", LinkName = "Register" }); return PartialView("SideMenu", list); } } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MVCTutorial.Models { public class MenuItem { public string LinkName { get; set; } public string Link { get; set; } } }
@{ ViewBag.Title = "Index"; // Layout = null; } <div class="panel panel-body" style="min-height:256px"> <div class="col-md-3"> @{ Html.RenderAction("SideMenu", "Test");} </div> <div class="col-md-9"> @*Write your rest content here*@ </div> </div>
# Partial View (SideMenu.cshtml)- Add this into shared folder
@model IEnumerable<MVCTutorial.Models.MenuItem> <div class="panel panel-default" > <div class="panel-heading"> <h4>Menu Item</h4> </div> <div class="panel-body"> <ul class="list-group"> @if (Model != null) { foreach (var item in Model) { <li class="list-group-item"><a href="@item.Link" class="btn btn-primary btn-block">@item.LinkName</a></li> } } <li class="list-group-item"><a href="http://google.com" class="btn btn-success btn-block">Google</a></li> <li class="list-group-item"><a href="http://technotipstutorial.blogspot.com" class="btn btn-warning btn-block">Official Blog</a></li> </ul> </div> </div> <div class="thumbnail"> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">Director Message</h3> </div> </div> <img src="~/Content/Images/director1.jpg" alt="..." style="margin-top:-20px"> <div class="caption"> <h3>Ashish Tiwary</h3> <p>¶ Have faith in us, We will give you full satisfaction by providing best service. ¶</p> <p><a href="#" class="btn btn-primary" role="button">See more</a> </p> </div> </div>
All Code Factory
- Part 11- Insert data into database
- Part 12- Server side and clientside validation
- Part 13- Insert data into multiple tables
- Part 14- Insert data into database using JQuery
- Part 15- How to create Bootstrap Popup
- Part 16- Delete operation in Asp.net MVC
- Part 17- What is Partial View in Asp.net MVC
- Part 18- How to call Partial View using JQuery
- Part 19- Difference between Html.Partial() and Html.RenderPartial()
- Part 20- AddEdit Record using Partial View
- Part 21- Layout View in Asp.net MVC
- Part 22- Style.Render and Script.Render
- Part 23 - RenderBody, RenderSection and RenderPage.
- Part 24- Divide Page into several component using Bootstrap
- Part 25- Refresh Entity framework after any modification in database table
- Part 26- Set foreign key relationnship in database tables
- Part 27- Create Rgistration Page
- Part 28- Create Login Page
- Part 29- Client Side Validation using JQuery
- Part 30- How to return multiple Model to a View (Interview)
- Part 31- How to create Dynamic Menu using Partial View
- Part 32- Preview Image Before Uploading
- Part 33- Upload and Display Image using JQuery
- Part 34-Upload Image to SQL Server and Display
- Part 35- Download Image from URL and Upload to SQL Server
- Part 36- Cascading DropdownList
- Part 37- Implement Search Functionality
- Part 38- Attribute Routing in MVC
- Part 39- How to display multiple checkbox checked data
- Part 40- How to send multiple checkbox checked value to Server
- Part 41- How to create responsive sortable Image Gallery
- Part 42 - How to implement JQuery Autocomplete Textbox
- Part 43 - How to send Emails in Asp.net MVC
- Part 44 - Integrate JQuery DataTables plugin
- Part 45 - Display record from database using JQuery Datatable
- Part 46- Add Edit Record using JQuery DataTable
- Part 47 - JQuery DataTables Server -side Processing
- Part 48 - JQuery server side processing -Search functionality
- Part 49 - Pagination using Skip and Take method
- Part 50 - Refresh DataTable After Performing Any Action
- Part 51 - Send OTP ( One Time Password ) to any mobile device
- Part 52 - How to use AutoMapper in Asp.net MVC
- Part 53 - How to use AutoMapper ForMember Method
- Part 54 - Repository Pattern - 1 - Adding Business Layer
- Part 55 - Repository Pattern - 2 - Adding Domain Layer
- Part 56 - Repository Pattern - 3 - Dependency Injection
- Part 57- Repository Pattern- 4 - Adding Data Access Layer
- Part 58 - Repository Pattern - 5 - Setting Up Generic Repository
- Part 59 - Display Record using repository pattern
- Part 60 - Add Edit Record using Repository Pattern
3 comments:
This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.Well, got a good knowledge.
Data Science Training in Chennai
Data Science training in kalyan nagar
Data science training in Bangalore
Data Science training in marathahalli
Data Science interview questions and answers
Data science training in jaya nagar
The coding are really awesome.it is working. waiting for future updates.
Java training in Chennai | Certification | Online Course Training | Java training in Bangalore | Certification | Online Course Training | Java training in Hyderabad | Certification | Online Course Training | Java training in Coimbatore | Certification | Online Course Training | Java training in Online | Certification | Online Course Training
Good Post! , it was so good to read and useful to improve my knowledge as an updated one, keep blogging. After seeing your article I want to say that also a well-written article with some very good information which is very useful for the readers....thanks for sharing it and do share more posts like this.
AWS Online Training
Online AWS Certification Training
Post a Comment