Category: MVC
-
Adding Menu functionality in Html Helper class using Extension method
Objective This article will show how to add new functionality in HtmlHelper class using Extension method. This will give step by step explanation of, how to create or add MENU functionality n Html helper class and then use that in view of ASP.Net MVC application. Step 1 Create an ASP.Net MVC application. File->New->Project->web->ASP.Net MVC Application…
-
Controller in 2 ASP.Net MVC Applications
Objective Purpose of this tutorial is to explain all about Controller in ASP.Net MVC application. Part 1 of this series of tutorial could be found here http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/MVCFrameWorkPart103262009001714AM/MVCFrameWorkPart1.aspx ASP.Net MVC controller MVC controller takes user request in browser. These are responsible for responding to request made against ASP.Net MVC web site. Browser request is mapped to…
-
Author Contact Detail in ASP.Net MVC
Objective The Core purpose of this article is demonstrated to perform CRUD operation on a database in ASP.NET MVC Framework. See my other articles on ASP.NET MVC Framework to , get an understanding of different components of framework. My articles could be found Introduction Here Output Caching Here About Controller here SilverLight in MVC Framework…
-
Action Filter in ASP.Net MVC Application
Objective This article will give an introduction of Action Filter in ASP.Net MVC framework. This will also explain how to create a custom Action filter. Action Filters in ASP.Net MVC framework Action filters are attribute This could be applied on a particular Action This could be applied on a Controller. This modifies the way Action…