What Is MVC (Model View Controller) ?
What Is MVC (Model View Controller) ?
What Is MVC (Model View Controller) ?
Automated UI testing is possible because now the behind code (UI interaction code) has moved to a
simple .NET class. This gives us opportunity to write unit tests and automate manual testing.
Business logic
Middle layer Model
/validations
Side by side - deploy the runtime and framework with your application
No need to recompile for every change. Just hit save and refresh the browser.
Compilation done with the new Roslyn real-time compiler.
vNext is Open Source via the .NET Foundation and is taking public contributions.
vNext (and Rosyln) also runs on Mono, on both Mac and Linux today.
MVC 5
One ASP.NET
Asp.Net Identity
Authentication Filters
Filter overrides
MVC 4
MVC 3
Razor
Client-Side Validation
Templated Helpers
Areas
Asynchronous Controllers
DataAnnotations Attributes
Model-Validator Providers
Templated Helpers
Hide Copy Code
For checkbox below is the HTML helper code. In this way we have HTML helper methods for every
HTML control that exists.
Hide Copy Code
Hide Copy Code
Html.TextBox("CustomerCode")
Below is “Html.TextBoxFor” code which creates HTML textbox using the property name
‘CustomerCode” from object “m”.
Hide Copy Code
In the same way we have for other HTML controls like for checkbox we have “Html.CheckBox” and
“Html.CheckBoxFor”.
For instance let’s say we want that when a user types “http://localhost/View/ViewCustomer/”, it goes
to the “Customer” Controller and invokes the DisplayCustomer action. This is defined by adding
an entry in to the routes collection using the maproute function. Below is the underlined code
which shows how the URL structure and mapping with controller and action is defined.
Hide Copy Code
routes.MapRoute(
"View", // Route name
"View/ViewCustomer/{id}", // URL with parameters
new { controller = "Customer", action = "DisplayCustomer",
id = UrlParameter.Optional }); // Parameter defaults
Hide Copy Code
This is much user friendly as compared to scrolling through the “routeconfig.cs” file and going
through the length line of code to figure out which URL structure is mapped to which action.
Hide Copy Code
[HttpGet]
public ViewResult DisplayCustomer(int id)
{
Customer objCustomer = Customers[id];
return View("DisplayCustomer",objCustomer);
}
Temp data - Helps to maintain data when you move from one controller to another controller or
from one action to another action. In other words when you redirect, tempdata helps to maintain
data between those redirects. It internally uses session variables.
View data - Helps to maintain data when you move from controller to view.
View Bag - It’s a dynamic wrapper around view data. When you use Viewbag type, casting is not
required. It uses the dynamic keyword internally.
Figure: dynamic keyword
Session variables - By using session variables we can maintain data from any entity to any entity.
Hidden fields and HTML controls - Helps to maintain data from UI to controller only. So you can
send data from HTML controls or hidden fields to the controller using POST or GET HTTP methods.
Below is a summary table which shows the different mechanisms for persistence.
Maintains data
ViewData/ViewBag TempData Hidden fields Session
between
Controller to
No Yes No Yes
Controller
Hide Copy Code
@TempData[“MyData”];
TempData.Keep(“MyData”);
The more shortcut way of achieving the same is by using “Peek”. This function helps to read as well
advices MVC to maintain “TempData” for the subsequent request.
Hide Copy Code
If you want to read more in detail you can read from this detailed blog on MVC Peek and Keep.
For every page you would like to reuse the left menu, header, and footer controls. So you can go and
create partial views for each of these items and then you call that partial view in the main view.
Once the partial view is created you can then call the partial view in the main view using the
Html.RenderPartial method as shown in the below code snippet:
Hide Copy Code
<body>
<div>
<% Html.RenderPartial("MyView"); %>
</div>
</body>
Later in the controller we can check if the model is proper or not by using
the ModelState.IsValid property and accordingly we can take actions.
Hide Copy Code
Below is a simple view of how the error message is displayed on the view.
What are the other data annotation attributes for validation in MVC?
[StringLength(160)]
public string FirstName { get; set; }
In case you want to use a regular expression, you can use the RegularExpression attribute.
Hide Copy Code
If you want to check whether the numbers are in range, you can use the Range attribute.
Hide Copy Code
Sometimes you would like to compare the value of one field with another field, we can use
the Compare attribute.
Hide Copy Code
public string Password { get; set; }[Compare("Password")]public string ConfirmPass { get; set;
}
In case you want to get a particular error message , you can use the Errors collection.
Hide Copy Code
If you have created the model object yourself you can explicitly call TryUpdateModel in your
controller to check if the object is valid or not.
Hide Copy Code
TryUpdateModel(NewCustomer);
In case you want add errors in the controller you can use the AddModelError function.
Hide Copy Code
Hide Copy Code
Hide Copy Code
<%=DateTime.Now%>
Hide Copy Code
@DateTime.Now
<authentication mode="Windows"/>
<authorization>
<deny users="?"/>
</authorization>
Then in the controller or on the action, you can use the Authorize attribute which specifies which
users have access to these controllers and actions. Below is the code snippet for that. Now only the
users specified in the controller and action can access it.
Hide Copy Code
[Authorize(Users= @"WIN-3LI600MWLQN\Administrator")]
public class StartController : Controller
{
//
// GET: /Start/
[Authorize(Users = @"WIN-3LI600MWLQN\Administrator")]
public ActionResult Index()
{
return View("MyView");
}
}
<authentication mode="Forms">
<forms loginUrl="~/Home/Login" timeout="2880"/>
</authentication>
We also need to create a controller where we will check if the user is proper or not. If the user is
proper we will set the cookie value.
Hide Copy Code
All the other actions need to be attributed with the Authorize attribute so that any unauthorized
user making a call to these controllers will be redirected to the controller (in this case the controller is
“Login”) which will do the authentication.
Hide Copy Code
[Authorize]
PublicActionResult Default()
{
return View();
}
[Authorize]
publicActionResult About()
{
return View();
}
How to implement AJAX in MVC?
You can implement AJAX in two ways in MVC:
AJAX libraries
jQuery
Below is a simple sample of how to implement AJAX by using the “AJAX” helper library. In the below
code you can see we have a simple form which is created by using the Ajax.BeginForm syntax. This
form calls a controller action called getCustomer. So now the submit action click will be an
asynchronous AJAX call.
Hide Copy Code
<script language="javascript">
function OnSuccess(data1)
{
// Do something here
}
</script>
In case you want to make AJAX calls on hyperlink clicks, you can use the Ajax.ActionLink function
as shown in the below code.
Below is the controller code. You can see how the GetDate function has a pause of 10 seconds.
Hide Copy Code
public class Default1Controller : Controller
{
public string GetDate()
{
Thread.Sleep(10000);
return DateTime.Now.ToString();
}
}
The second way of making an AJAX call in MVC is by using jQuery. In the below code you can see we
are making an AJAX POST call to a URL /MyAjax/getCustomer. This is done by using $.post. All this
logic is put into a function called GetData and you can make a call to the GetData function on a
button or a hyperlink click event as you want.
Hide Copy Code
function GetData()
{
var url = "/MyAjax/getCustomer";
$.post(url, function (data)
{
$("#txtCustomerCode").val(data.CustomerCode);
$("#txtCustomerName").val(data.CustomerName);
}
)
}
The problem with the inline action attribute is that it cannot be reused across controllers. So we can
convert the inl ine action filter to an action filter attribute. To create an action filter attribute we need
to inherit fromActionFilterAttribute and implement the IActionFilter interface as shown in
the below code.
Hide Copy Code
Later we can decorate the controllers on which we want the action attribute to execute. You can see
in the below code I have decorated the Default1Controller with the MyActionAttribute class
which was created in the previous code.
Hide Copy Code
[MyActionAttribute]
public class Default1Controller : Controller
{
public ActionResult Index(Customer obj)
{
return View(obj);
}
}
Let’ say we want to create a custom view engine where in the user can type a command like
“<DateTime>” and it should display the current date and time.
Step 1: We need to create a class which implements the IView interface. In this class we should
write the logic of how the view will be rendered in the render function. Below is a simple code
snippet for that.
Hide Copy Code
Step 3: We need to register the view in the custom view collection. The best place to register the
custom view engine in the ViewEngines collection is the global.asax file. Below is the code snippet
for that.
Hide Copy Code
Below is a simple output of the custom view written using the commands defined at the top.
If you invoke this view, you should see the following output:
How to send result back in JSON format in MVC
In MVC, we have the JsonResult class by which we can return back data in JSON format. Below is a
simple sample code which returns back a Customer object in JSON format using JsonResult.
Hide Copy Code
Below is the JSON output of the above code if you invoke the action via the browser.
What is WebAPI?
HTTP is the most used protocol. For the past many years, browser was the most preferred client by
which we consumed data exposed over HTTP. But as years passed by, client variety started spreading
out. We had demand to consume data on HTTP from clients like mobile, JavaScript, Windows
applications, etc.
For satisfying the broad range of clients REST was the proposed approach. You can read more about
REST from the WCF chapter.
WebAPI is the technology by which you can expose data over HTTP following REST principles.
SOAP follows WS-* WebAPI follows REST principles. (Please refer to REST in
Principles
specification. WCF chapter.)
Step 2: Once you have created the project you will notice that the controller now inherits
from ApiController and you can now implement POST, GET, PUT, and DELETE methods of the
HTTP protocol.
Hide Copy Code
Step 3: If you make an HTTP GET call you should get the below results:
Figure: HTTP
The below scenario can become worse if we have a lot of JavaScript files resulting in multiple
requests, thus decreasing performance. If we can somehow combine all the JS files into a single
bundle and request them as a single unit that would result in increased performance (see the next
figure which has a single request).
bundles.Add(new ScriptBundle("~/Scripts/MyScripts").Include(
"~/Scripts/*.js"));
Once you have combined your scripts into one single unit we then to include all the JS files into the
view using the below code. The below code needs to be put in the ASPX or Razor view.
Hide Copy Code
If you now see your page requests you would see that script request is combined into one request.
BundleTable.EnableOptimizations = true;
Explain minification and how to implement it
Minification reduces the size of script and CSS files by removing blank spaces , comments etc. For
example below is a simple javascript code with comments.
Hide Copy Code
// This is test
var x = 0;
x = x + 1;
x = x * 2;
After implementing minification the JavaScript code looks like below. You can see how whitespaces
and comments are removed to minimize file size, thus increasing performance.
Hide Copy Code
var x=0;x=x+1;x=x*2;
If we can group controller classes in to logical section like “Invoicing” and “Accounting” that would
make life easier and that’s what “Area” are meant to.
You can add an area by right clicking on the MVC solution and clicking on “Area” menu as shown in
the below figure.
In the below image we have two “Areas” created “Account” and “Invoicing” and in that I have put the
respective controllers. You can see how the project is looking more organized as compared to the
previous state.
Explain the concept of View Model in MVC?
A view model is a simple class which represents data to be displayed on the view.
For example below is a simple customermodel object with “CustomerName” and “Amount” property.
Hide Copy Code
But when this “Customer” model object is displayed on the MVC view it looks something as shown in
the below figure. It has “CustomerName” , “Amount” plus “Customer Buying Level” fields on the
view / screen. “Customer buying Level” is a color indicationwhich indicates how aggressive the
customer is buying.
“Customer buying level” color depends on the value of the “Amount property. If the amount is
greater than 2000 then color is red , if amount is greater than 1500 then color is orange or else the
color is yellow.
In other words “Customer buying level” is an extra property which is calculated on the basis of
amount.
CustomerName TxtCustomerName
Amount TxtAmount
CustomerBuyingLevelColor
Color transformation logic: - For example you have a “Grade” property in model and you would
like your UI to display “red” color for high level grade, “yellow” color for low level grade and “green”
color of ok grade.
Data format transformation logic :-Your model has a property “Status” with “Married” and
“Unmarried” value. In the UI you would like to display it as a checkbox which is checked if “married”
and unchecked if “unmarried”.
Aggregation logic: -You have two differentCustomer and Address model classes and you have view
which displays both “Customer” and “Address” data on one go.
Structure downsizing: - You have “Customer” model with “customerCode” and “CustomerName”
and you want to display just “CustomerName”. So you can create a wrapper around model and
expose the necessary properties.
How can we use two ( multiple) models with a
single view?
Let us first try to understand what the interviewer is asking. When we bind a model with a view we
use the model dropdown as shown in the below figure. In the below figure we can only select one
model.
But what if we want to bind “Customer” as well as “Order” class to the view.
For that we need to create a view model which aggregates both the classes as shown in the below
code. And then bind that view model with the view.
Hide Copy Code
In the view we can refer both the model using the view model as shown in the below code.
Hide Copy Code
Note :- Do not get scared with the word. Its actually a very simple thing.
Scaffolding is a technique in which the MVC template helps to auto-generate CRUD code. CRUD
stands for create, read, update and delete.
So to generate code using scaffolding technique we need to select one of the types of templates
(leave the empty one).
For instance if you choose “using Entity framework” template the following code is generated.
It creates controller code, view and also table structure as shown in the below figure.
We have also set the exception so that it can be displayed inside the view.
Hide Copy Code
public class HomeController : Controller
{
protected override void OnException(ExceptionContext filterContext)
{
Exception ex = filterContext.Exception;
filterContext.ExceptionHandled = true;
}
}
To display the above error in view we can use the below code
Hide Copy Code
@Model.Exception;
Take a scenario where you have a view with two submit buttons as shown in the below code.
Hide Copy Code
In the above code when the end user clicks on any of the submit buttons it will make a HTTP POST to
“Action1”.
Now that we have understood the question let us answer the question in a detailed manner. There
are two approaches to solve the above problem one is the normal HTML way and the other is the
“Ajax” way.
In the HTML way we need to create two forms and place the “Submit” button inside each of the
forms. And every form’s action will point to different / respective actions. You can see the below
code the first form is posting to “Action1” and the second form will post to “Action2” depending on
which “Submit” button is clicked.
Hide Copy Code
In case the interviewer complains that the above approach is not AJAX this is where the second
approach comes in. In the Ajax way we can create two different functions “Fun1” and “Fun1” , see the
below code. These function will make Ajax calls by using JQUERY or any other framework. Each of
these functions are binded with the “Submit” button’s “OnClick” events.
Hide Copy Code
<Script language="javascript">
function Fun1()
{
$.post(“/Action1”,null,CallBack1);
}
function Fun2()
{
$.post(“/Action2”,null,CallBack2);
}
</Script>
“It’s an act of copying or imitating things like signature on a cheque, official documents to deceive the
authority source for financial gains.”
So when it comes to website this forgery is termed as CSRF (Cross Site Request Forgery).
CSRF is a method of attacking a website where the attacker imitates a.k.a forges as a trusted source
and sends data to the site. Genuine site processes the information innocently thinking that data is
coming from a trusted source.
For example conside the below screen of a online bank. End user’s uses this screen to transfer
money.
Below is a forged site created by an attacker which looks a game site from outside, but internally it
hits the bank site for money transfer.
The internal HTML of the forged site has those hidden fields which have the account number and
amount to do money transfer.
Hide Copy Code
<div>
Win 1000000 US$
<form action="http://localhost:23936/Genuine/Transfer" method=post>
<input type=hidden name="amount" value="10000" />
<input type=hidden name="account" value="3002" />
<input type=submit value="Play the ultimate game" />
</form>
</div>
Now let’s say the user has logged in to the genuine bank site and the attacker sent this forged game
link to his email. The end user thinking that it’s a game site clicks on the “Play the Ultimate Game”
button and internally the malicious code does the money transfer process.
So a proper solution to this issue can be solved by using tokens: -
o End user browses to the screen of the money transfer. Before the screen is served server injects a
secret token inside the HTML screen in form a hidden field.
o Now hence forth when the end user sends request back he has to always send the secret token. This
token is validated on the server.
Hide Copy Code
[ValidateAntiForgeryToken]
public ActionResult Transfer()
{
// password sending logic will be here
return Content(Request.Form["amount"] +
" has been transferred to account "
+ Request.Form["account"]);
}
Hide Copy Code
<div>
Transfer money
<form action="Transfer" method=post>
Enter Amount
<input type="text" name="amount" value="" />
@Html.AntiForgeryToken()
<input type=submit value="transfer money" />
</form>
</div>
So now henceforth when any untrusted source send a request to the server it would give the below
forgery error.
If you do a view source of the HTML you would find the below verification token hidden field with
the secret key.
Hide Copy Code
<input name="__RequestVerificationToken" type="hidden"
value="7iUdhsDNpEwiZFTYrH5kp/q7jL0sZz+CSBh8mb2ebwvxMJ3eYmUZXp+uofko6eiPD0fmC7Q0o4SXeGgRpxFp0i+
Hx3fgVlVybgCYpyhFw5IRyYhNqi9KyH0se0hBPRu/9kYwEXXnVGB9ggdXCVPcIud/gUzjWVCvU1QxGA9dKPA=" />
Sorry for the trouble, can you please read the above statement again and if you think it’s right then
this section is a must read for you.
Lot of ASP.NET developers who start MVC for the first time think that MVC is different new , fresh
from ASP.NET. But the truth is ASP.NET is a framework for creating web application while MVC is a
great architecture to organize and arrange our code in a better way. So rather than MVC you can say
ASP.NET MVC.
Ok so if the new thing is ASP.NET MVC what is the old thing called as,it’s “ASP.NET Webforms”.
“You are reading this article because you know ASP.NET Webforms and you want to upgrade yourself
to ASP.NET MVC.”
So now that your vocabulary is corrected welcome to the world of ASP.NET MVC and let’s start this
tutorial.
If you see the success of Microsoft programming languages right from the days of VB (visual basic) it
is due to RAD(Rapid application development)and visual programming approach.Visual
programming was so much preached and successful in Microsoft that literally they named their IDE’s
as “Visual studio”.
By using visual studio ,developers where able to drag drop UI elements on a designer area and at the
backend , visual studio generates C# or VB.NET code for those elements. These codes where termed
as “Behind Code” or “Code Behind”. In this code behind Developers can go and write logic to
manipulate the UI elements.
So the visual RAD architecture of Microsoft has two things one is the UI and the other is the code
behind. So for ASP.NET Web forms you have ASPX and ASPX.CS ,for WPF you have XAML / XAML.CS
and so on.
Let us try to understand why response time is slower when it comes to ASP.NET Webforms. We did a
small load testing experiment of Webform vs Asp.Net MVC and we found Asp.Net MVC to be twice
faster.
Read more on how this test was done from here
Let us try to understand why ASP.NET MVC was better in performance in the above load
test.Consider the below simple UI code and Code behind for that UI.
Assume the ASPX code has the below simple text box.
Hide Copy Code
In the code behind you have written some logic which manipulates the text box values and the back
ground color.
Hide Copy Code
When you run the above program below is the HTML output.
If you see the HTML output by doing view source it looks something as shown below.
Hide Copy Code
1. Is this a efficient way of generating HTML?. Do we really need to make those long server trips to get
those simple HTML on the browser ?.
2. Can’t the developer write HTML straight forward , Is it so tough?
If you see for every request there is a conversion logic which runs and converts the server controls to
HTML output.This conversion get’s worse and heavy when we have grids, tree view controls etc
where the HTML outputs are complicated HTML tables. Due to this unnecessary conversion the
response time get affected.
Solution for this problem: - “GET RID of CODE BEHIND” ,fold your sleeves and work with pure HTML.
Bandwidth consumption
Viewstate has been a very dear and near friend of ASP.NET developers for past 10 years because it
automatically saves states between post backs and reduces our development time. But this reduction
in development time comes at a huge cost ,viewstate increases the page size considerably. In
this load test we found viewstate increases the page size twice as compared to Asp.Net MVC.
Below is the plot of the content length emitted from Webform and Asp.Net MVC.
The size increase is because of extra bytes generated from viewstate , below is the snapshot of a
viewstate. Lot of people can argue that viewstate can be disabled but then we all know how
developers are , if there is option given they would definitely try that out.
Solution for this problem: - “GET RID of SERVER CONTROLS”.
Note: -The rest of the three points down below are browny issues which have cropped up due to
presence of code behind and server controls. But the main thing is always performance.
HTML customization
Now because we are salves of the code behind and ASP.NET web server controls, we have “NO IDEA”
what kind of HTML can come out and how efficient they are. For example see the below ASPX code,
can you guess what kind of HTML it will generate.
Hide Copy Code
Will Label generate DIV tag or SPAN tag ?. If you run the above code below are the respective
generated HTML. Label generates a SPAN , Literal generates simple text , Panel generates DIV tag
and so on.
Hide Copy Code
I am a panel
So rather than generating HTML using server controls how about writing HTML directly and taking
complete control of HTML.
So the solution for this problem is “DO NOT USE SERVER CONTROLS” and work with direct HTML.
The other great benefit of working directly with HTML is that your web designers can work very
closely with the developer team. They can take the HTML code put in their favourite designer tool
like dream weaver , front page etc and design independently . If we have server controls these
designer tools do not identify them easily.
If you watch any professional ASP.NET Webform project you will notice that code behind class is
where you have huge amount of code and the code is really complicated.Now this code behind page
class inherits from “System.Web.UI.Page” class. This class is not a normal class which can be reused
and instantiated anywhere. In other words you can never do something as shown below for a
Webform class:-
Hide Copy Code
Because the “WebForm” class cannot instantiate with out “request” and “response” object. If you
have ever seen the “ButtonClick” events of “WebForm” they are as shown in the code below. From
the code you can know how difficult it is to instantiate the same.
Hide Copy Code
Solution for this problem: - “GET RID of SERVER CONTROLS and CODE BEHIND”.
Unit Testing
As said in the previous section you cannot instantiate behind code straight forward it’s very difficult
to do unit testing or I will say automation testing on the code behind. Someone has to manually run
the application and do the testing.
In short the solution should look something as shown in the below image.
This UI talk’s with .NET classes which you can term as middle layer , business logic etc and the middle
layer talks with data access layer.
So Asp.Net MVC comprises of three sections Model , View and Controller. The code behind logic
goes in to the controller. View is your ASPX i.e. pure HTML and your Model is your middle layer. You
can see in the above diagram how those layers fit in.
So if you see there are two major changes VIEW becoming simple HTML and code behind moving to
simple .NET classes termed as controller.
Step 2:- Depending on the action controller creates the object of the model. Model in turn calls the
data access layer which fetches data in the model.
Step 3:- This data filled model is then passed to the view for display purpose.
Now that we have understood the different components of Asp.Net MVC let’s go in depth in to each
one of these components , let us start doing some lab’s. Let us first start with controllers as they are
the most important and central part of the MVC architecture.
Did you ever gave a thought what happen’s, when end user hits a URL on a browser.
By means of such request, client is trying to interact with server. Server is able to respond back
because some logic is written at server end to fulfil this request.
Logic which will handle the user requests and user’s interaction with server. In short User Interaction
Logic
Scenario 2
It also possible that response sent by Server is an HTML response. HTML response which can consist
of couple of input controls and a submit button.
“In reality in web programming there is no concept of event’s. In case of Asp.net Web Forms Microsoft
wrote some code on behalf of us and brought us the feeling of event driven programming. It’s just an
abstraction or the right word would illusion.”
When button is clicked a simple HTTP request is sent to the server. This time the difference is, values
in the “Customer Name”, “Address” and “Age” will be sent along with request. (In technical terms
“values are posted to the server”). Ultimately, if it’s a request then there must be a logic written in the
server so that server can send back the response. In short there must be some user interaction logic
written on the server.
In Asp.Net MVC, the last letter C that is Controller is the one who will handle the user interaction
Logic.
Step 1.2 Select Web Application. Put Name. Put Location and say ok.
Step 1.3 Select MVC template
Step 1.4 Click on Change Authentication. Select “No Authentication” from “Change Authentication”
dialog box and click ok.
Step 1.5. Click ok.
Step 2.1. In the solution explorer, right click the controller folder and select Add>>Controller
One very important point to note at this step is do not delete the word controller. For now you can
think it’s like a reserved keyword.
Open newly created TestController class. You will find a method inside it called “Index”. Remove that
method and add new public method called “GetString” as follows.
Hide Copy Code
Press F5. In the address bar put “ControllerName/ActionName” as follows. Please note do not type
the word “Controller” just type “Test”.
Q & A session around Lab 1
What is the relationship between TestController and Test?
TestController is the class name whereas Test is the controller name. Please note, when you type the
controller name on the URL it should be without the word controller.
Asp.Net MVC follows Convention based approach. It strictly look’s into the conventions we used.
Action method is simply a public method inside controller which accepts user’s request and returns
some response. In above example, action method “GetString” is returning a string response type.
Note: In Asp.Net Web Forms default return response is always HTML. In case we want to return
something other than HTML (in asp.net Web Forms), we create HTTP handlers, override content
type , do response.end etc. It’s not an easy task. In Asp.net MVC it’s very easy. If return type is ‘string’
you can just return string , you do not need to send complete HTML.
Hide Copy Code
namespace WebApplication1.Controllers
{
public class Customer
{
public string CustomerName { get; set; }
public string Address { get; set; }
}
public class TestController : Controller
{
public Customer GetCustomer()
{
Customer c = new Customer();
c.CustomerName = "Customer 1";
c.Address = "Address1";
return c;
}
}
}
When return type is some object like ‘customer’, it will return ‘ToString()’ implementation of that
object.By default ‘ToString()’ method returns fully qualified name of the class which is
“NameSpace.ClassName”;
Hide Copy Code
They are simply methods of a class and not available publicly . In simple words these methods can
not be invoked from the web.
What if we want a method to be public but not action method?
Hide Copy Code
[NonAction]
public string SimpleMethod()
{
return "Hi, I am not action method";
}
When we try to make request to above action method we will get following response.
Hide Copy Code
Step 2.1. Right click the above action method and select “Add View”.
Step 2.2. In the “Add View” dialog box put view name as “MyView”, uncheck “use a layout” checkbox
and click “Add”.
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>MyView</title>
</head>
<body>
</body> </html>
For example: All the views related to Test controller will be placed inside “~/Views/Test” and Test
controller can access only those views which are inside Test folder.
Yes, we can. For that we will keep those files inside a special folder called “Shared”.
Views located inside this Shared folder will be available to all the controllers.
Is it possible that one action method is referencing more than one views?
Hide Copy Code
Note: In Asp.Net MVC views and controllers are not tightly coupled. One action method can refer
more than one view and one view can be referred by more than one action method (by keeping
them in Shared folder). It provides better reusability
Note: We have separate topic in the series disucssing Asp.Net MVC life cycle in detail.
ActionResult is the abstract class whereas ViewResult is the multi level child of ActionResult.
Multilevel because, ViewResult is the child of ViewResultBase and ViewResultBase is the child of
ActionResult.
Hide Copy Code
In the above example, when some condition is matching we are returning we are invoking “View”
function which will return ViewResult whereas in some other condition we are invoking “Content”
function which is returning Content Result.
What is ContentResult?
ViewResult represents a complete HTML response whereas ContentResult represents a scalar text
response. It’s just like returning pure string. Difference is ContentResult is a ActionResult wrapper
around string result. ContentResult is also the child of ActionResult.
View will get data from the controller in the form of Model.
Model
Hide Copy Code
Hide Copy Code
Note: Make sure to put using statement in the top or else we have to put fully qualified name of
Employee class.
Hide Copy Code
using WebApplication1.Models;
Hide Copy Code
ViewData["Employee"] = emp;
return View("MyView");
Open MyView.cshtml.
Retrieve the Employee data from the ViewData and display it as follows.
Hide Copy Code
<div>
@{
WebApplication1.Models.Employee emp=(WebApplication1.Models.Employee)
ViewData["Employee"];
}
put
In the last lab @emp.FirstName can be replaced with following code snippet.
Hide Copy Code
@{
Response.Write(emp.FirstName);
}
ViewData holds objects internally. Every time a new value is added into it, it get boxed to object type.
It means Display First Name followed by a space and then last name.
Just for demo purpose. In real time we will get it from may be database or wcf or web service or may
be from somewhere else.
What about the Database Logic/ Data Access Layer and Business Layer?
Data Access Layer is one of the unspoken layer in Asp.Net MVC. It’s always there but never included
in MVC definition.
Business layer as explained prior, it’s a part of Model.
Continue with the same Lab 3 and replace Step 3 with following code snippet.
Hide Copy Code
ViewBag.Employee = emp;
Hide Copy Code
@{
WebApplication1.Models.Employee emp = (WebApplication1.Models.Employee)
ViewBag.Employee;
}
Employee Details
Yes, We can. Vice versa is also possible. As I said before, ViewBag is just a syntactic sugar for
ViewData,
Performance issues
Values inside the ViewData are of type Object. We have to cast the value to correct type before using
it. It adds additional overhead on performance.
If we try to cast values to wrong type or if we use wrong keys while retrieving the values, we will get
runtime error. As a good programming practice, error should be tackled in compiled time.
In MVC, controller and View are loosely connected to each other. Controller is completely unaware
about what’s happening in View and View is unaware about what’s happening in Controller.
From Controller we can pass one or more ViewData/ViewBag values. Now when Developer writes a
View, he/she have to remember what is coming from the controller. If Controller developer is
different from View developer then it becomes even more difficult. Complete unawareness. It leads
to many run time issues and inefficiency in development.
Lab 5 - Understand strongly typed Views
Reason for all three problems of ViewData and ViewBag is the data type. Data type of values inside
ViewData, which is “Object”.
Somehow if we were able to set the type of data which need to be passed between Controller and
View problem will get solved and that’s where strongly typed Views comes to picture.
Let’s do a demo. This time we will take our View requirement to next level. If salary is greater than
15000 then it will be displayed in yellow colour or else green colour.
Hide Copy Code
@model WebApplication1.Models.Employee
Above statement make our View a strongly typed view of type Employee.
Now inside View simply type @Model and Dot (.) and in intellisense you will get all the properties of
Model (Employee) class.
Hide Copy Code
Employee Details
@if(Model.Salary>15000)
{
<span style="background-color:yellow">
Employee Salary: @Model.Salary.ToString("C")
</span>
}
else
{
<span style="background-color:green">
Hide Copy Code
Talk on Lab 5
Is it required to type fully qualified class Name (Namespace.ClassName) in View every time?
Hide Copy Code
@using WebApplication1.Models
@model Employee
Is it must to make View a strongly typed view always or can we go with ViewData or ViewBag
sometimes?
Can we make our View a strongly typed view of more than one model?
No, we can’t. In real time project we often end up at a point where we want to display multiple
models in same view. Solution for this requirement will be discussed in next lab.
Understand View Model in Asp.Net MVC
In Lab 5 we have violated MVC principle. According to MVC, V that is View should be pure UI. It
should not contain any kind of logic. We have done following three things which purely violates MVC
architecture rules.
Append First name and Last Name and Display it as Full Name - Logic
Display Salary with Currency – Logic
Display Salary in different colour based on value. In simple words Change appearance of HTML
element based on some value. – Logic
Other than these three issues, there isone more pointworth discussion.
Let say we have situation where we want to display more than one kind of data in the View.
Example – Show Current logged in User’s Name along with Employee data
1. Add UserName property to Employee class –Every time we want to display new data in the view,
adding new property to Employee class seems illogical. This new property may or may not be related
to Employee. It also violates SRP of SOLID principle.
2. Use ViewBag or ViewData – We already discussed problems of using this approach.
ViewModel a solution
ViewModel is one of the unspoken layer in the Asp.Net MVC application. It fits between Model and
View and act as data container for View
Model is Business specific data. It will be created based on Business and Database structure.
ViewModel is View specific data. It will be created based on the View.
It’s simple.
Controller handle the user interaction logic or in simple words, handles the user’s requests.
Controller get one or more model data.
Controller will decide which View suits best as response for the correct request.
Controller will create and initialize ViewModel object from Model data retrieved based on View
Requirement
Controller will pass ViewModel data to View by means of ViewData/ViewBag/Stongly typed View.
Controller will return the view.
How View and ViewModel will be connected here?
Model and ViewModel should be independent of each other. Controller will create and initialises
ViewModel object based on one or more Model object.
Create a new class called EmployeeViewModel inside ViewModels folder will looks like below.
Hide Copy Code
Please note, in View Model class, FirstName and LastName properties are replaced with one single
property called EmployeeName, Data type of Salary property is string and two new
propertiesareadded called SalaryColor and UserName.
In Lab 5 we had made our View a strongly type view of type Employee. Change it to
EmployeeViewModel
Hide Copy Code
@using WebApplication1.ViewModels
@model EmployeeViewModel
Hide Copy Code
Hello @Model.UserName
<hr />
<div>
<b>Employee Details</b><br />
Employee Name : @Model.EmployeeName <br />
<span style="background-color:@Model.SalaryColor">
Employee Salary: @Model.Salary
</span>
</div>
In GetView action method,get the model data and convert it to ViewModel object as follows.
Hide Copy Code
vmEmp.UserName = "Admin"
Talk on Lab 6
Does it means, every model will have one View Model?
No, as a best practice Model and ViewModel should be independent to each other.
Should we always create ViewModel? What if View won’t contain any presentation logic and it
want to display Model data as it is?
We should always create ViewModel. Every view should always have its own ViewModel even if
ViewModel is going to contain same properties as model.
Let’s say we have a situation where View won’t contain presentation logic and it want to display
Model data as it is.Let’s assume we won’t create a ViewModelin this situation.
Problem will be, if in future requirement,ifwe have been asked to show some new data in our UI or if
we asked to put some presentation logic we may end with complete new UI creation from the
scratch.
So better if we keep a provision from the beginning and Create ViewModel. In this case, in the initial
stage ViewModel will be almost same as Model.
Hide Copy Code
public class EmployeeViewModel
{
public string EmployeeName { get; set; }
public string Salary { get; set; }
public string SalaryColor { get; set; }
}
Hide Copy Code
Hide Copy Code
@using WebApplication1.ViewModels
@model EmployeeListViewModel
Hide Copy Code
<body>
Hello @Model.UserName
<hr />
<div>
<table>
<tr>
<th>Employee Name</th>
<th>Salary</th>
</tr>
@foreach (EmployeeViewModel item in Model.Employees)
{
<tr>
<td>@item.EmployeeName</td>
<td style="background-color:@item.SalaryColor">@item.Salary</td>
</tr>
}
</table>
</div>
</body>
Step 5 – Create Business Layer for Employee
In this lab, we will take our project to next level. We will add Business Layer to our project. Create a
new class called EmployeeBusinessLayer inside Model folder with a method called GetEmployees.
Hide Copy Code
Talk on Lab 7
Can we make View a strongly typed view of List?
Yes, we can.
Why we create a separate class called EmployeeListViewModel, why didn’t we made View a
strongly typed view of type List<EmployeeListViewModel>?
UserName is going to be same for all the employees. Keeping UserName property inside
EmployeeViewModel just increase the redundent code and also increases the overall memoty
requirement for data.
Here we will use Sql Server and Entity Framework for creating Database and Database Access layer
respectively.
In RDBMS world, we speak in terms of Tables and Columns whereas in .net world (which is an object
oriented world), we speak in terms of Classes, objects and properties.
When we think about any data driven application we end up with following two things.
Write code for communicating with database (called Data Access Layer or Database logic)
Write code for mapping Database data to object oriented data or vice versa.
ORM is a tool which will automate these two things. Entity framework is Microsoft ORM tool.
Database First approach – Create database with tables, columns, relations etc. and Entity framework
will generates corresponding Model classes (Business entities) and Data Access Layer code.
Model First approach – In this approach Model classes and relationship between them will be
defined manually using Model designer in Visual studio and Entity Framework will generate Data
Access Layer and Database with tables, columns, relations automatically.
Code First approach – In this approach manually POCO classes will be created. Relationship between
those classes will be defined by means of code. When application executes for the first time Entity
framework will generate Data Access Layer and Database with tables, column and relations
automatically in the database server.
POCO stands for “Plain Old CLR objects”. POCO classes means simple .Net classes we create. In our
previous example Employee class was simply a POCO class.
Connect to the Sql Server and create new Database called “SalesERPDB”.
Step 2 – Create ConnectionString
Open Web.config file and inside Configuration section add following section
Hide Copy Code
<connectionStrings>
<add connectionString="Data Source=(local);Initial Catalog=SalesERPDB;Integrated
Security=True"
name="SalesERPDAL"
providerName="System.Data.SqlClient"/>
</connectionStrings>
Right click the project >> Manage Nuget packages. Search for Entity Framework and click install.
Step 4 – Create Data Access layer.
Create a new folder called “DataAccessLayer” in the root folder and inside it create a new class called
“SalesERPDAL”
Hide Copy Code
using System.Data.Entity;
Open Employee class and put using statement at the top as follows.
Hide Copy Code
using System.ComponentModel.DataAnnotations;
Hide Copy Code
Hide Copy Code
using WebApplication1.Models;
Hide Copy Code
Note: In above code snippet “TblEmployee” represents the table name. It automatically get created
in runtime.
Hide Copy Code
DbSet will represent all the employees that can be queried from the database.
Step 8– Change Business Layer Code and get data from Database
Hide Copy Code
using WebApplication1.DataAccessLayer;
Hide Copy Code
Right now we don’t have any employees in the database so we will see a blank grid.
Check the database. Now we have a table called TblEmployee with all the columns.
Talk on Lab 8
What is DbSet?
DbSet simply represent the collection of all the entities that can be queried from the database. When
we write a Linq query again DbSet object it internally converted to query and fired against database.
In our case “Employees” is a DbSet which will hold all the “Employee” entities which can be queried
from database. Every time we try to access “Employees” it gets all records in the “TblEmployee” table
and convert it to “Employee” object and return the collection.
Mapping will be done based on name. In our example ConnectionString Name and Data Access
Layer class name is same that is “SalesERPDAL”, hence automatically mapped.
Yes, in that case we have to define a constructor in Data Access Layer class as follows.
Hide Copy Code
public SalesERPDAL():base("NewName")
{
}
Organize everything
Just to make everything organized and meaningful let’s do couple of changes.
Step 1 - Rename
“TestController” to “EmployeeController”
GetView action method to Index
Test folder (inside Views folder) to Employee
and “MyView” view to “Index”
Hide Copy Code
Hello @Model.UserName
<hr />
Hide Copy Code
Hide Copy Code
Hide Copy Code
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>CreateEmployee</title>
</head>
<body>
<div>
<form action="/Employee/SaveEmployee" method="post">
First Name: <input type="text" id="TxtFName" name="FirstName" value="" /><br />
Last Name: <input type="text" id="TxtLName" name="LastName" value="" /><br />
Salary: <input type="text" id="TxtSalary" name="Salary" value="" /><br />
<input type="submit" name="BtnSave" value="Save Employee" />
<input type="button" name="BtnReset" value="Reset" />
</form>
</div>
</body>
</html>
Hide Copy Code
<ahref="/Employee/AddNew">Add New</a>
In day 1 of the series we have understood that “Web world won’t follow Event driven programming
model. It follows request-response model. End user make the request and server sends response.”
Form tag is one of the way to make request in HTML. As soon as the submit button inside form tag
gets clicked, a request will be sent to the URL specified in action attribute.
How making request using Form tag is different from making request via browser address bar
or hyperlink?
When request is made with the help of Form tag, values of all the input controls are sent with the
request for processing.
What about checkbox, radio buttons and Dropdowns? Will values of this controls also sent?
Yes, All input controls (input type=text, type=radio, type=checkbox) and also dropdowns (which
represented as “Select” element).
When request is of type Get, Put or Delete, values will be sent as Query string parameters.
As discussed before values of all input controls will be sent along with request when submit button is
clicked. It makes server receive more than one value at a time. To distinguish each value separately
while sending every value is attached with one key and that key will be simply “name” attribute.
No, as per last question “name” attribute will be used internally by HTML when the request is being
sent whereas “id” attribute will be used by developers inside JavaScript for some dynamic stuffs.
Submit button will be specially used when we want to make request to the server whereas simple
button will be used to perform some custom client side actions. Simple button won’t do anything by
its own.
Lab 10 – Get posted data in Server
side/Controllers
Step 1 – Create SaveEmployee Action method
Hide Copy Code
Talk on Lab 10
How Textbox values are updated in Employee object inside action method?
Model Binder will executes automatically whenever a request is made to an action method
containing parameter.
Model binder will iterate though all primitive parameters of a method and then it will compare name
of the parameter with each key in the incoming data (Incoming data means either posted data or
query string).When match is found, corresponding incoming datawill be assigned to the parameter.
After that Model binder will iterate through each and every property of each and every class
parameter and compare each property name with each key in incoming data.When match is found,
corresponding incoming value will be assigned to the parameter.
What will happen when two parameters are specified, one as “Employee e” and second as
“string FirstName”?
FirstName will be updated in both primitive FirstName variable and e.FirstName property.
Yes it will, but in that case name of the control should be given accordingly.
Example
Hide Copy Code
Hide Copy Code
...
...
...
<input type="text" name="FName">
<input type="text" name="address.CityName">
<input type="text" name="address.StateName">
...
...
...
...
...
...
Note: Save button and Cancel button have same “Name” attribute value that is “BtnSubmit”.
In Head section of Html add a script tag and inside that create a JavaScript function called ResetForm
as follows.
Hide Copy Code
<script>
function ResetForm() {
document.getElementById('TxtFName').value = "";
document.getElementById('TxtLName').value = "";
document.getElementById('TxtSalary').value = "";
}
</script>
Hide Copy Code
Press F5 and execute the application. Navigate to the AddNew screen by clicking “Add New” link.
Step 5 – Test Reset functionality
Talk on Lab 11
Why same name is given to both Save and Cancel button?
We know that, as soon as submit button is clicked, a request is sent to the server.Along with the
request values of all the input controls will be sent.
Submit button is also an input button. Hence value of the submit button (which is responsible for the
request) will be sent too.
When Save button will be clicked, value of Save button that is “Save Employee” will be sent with
request and when Cancel button is clicked, value of Cancel button that is “Cancel” will sent with
request.
In Action method, Model Binder will do remaining work. It will update the parameter values with
values in input data (coming with request)
Hide Copy Code
</form>
Step 2 – Change Submit button to normal button and post above form with the help of JavaScript.
Hide Copy Code
Hide Copy Code
3. Ajax
Instead of submit button use simple input button and onclick of it make pure Ajax request using
jQuery or any other library.
Why we have not used input type=reset for implementing Reset functionality?
Input type=reset control won’t clear the values, it just set the value to default value of a control.
Example:
Hide Copy Code
If we use input type=reset for implementing Reset functionality then by default “Sukesh” will be set
in the textbox every time “reset” button is clicked.
What if names are not matching with property names of the classes?
Hide Copy Code
Now our Model class contain property names as FirstName, LastName and Salary. Hence default
model binder won’t work here.
Inside action method, retrieve posted values using Request.Form syntax and manually construct the
Model object as follows.
Hide Copy Code
Create Custom Model Binder and replace default model binder as follows.
Hide Copy Code
Step 2- Replace default model binder with this new model binder
Hide Copy Code
Note: Here browser is responsible for new request hence URL will get updated to new URL.
What is EmptyResult?
One more child of ActionResult. When browser receives EmptyResult as a response it simply displays
blank white screens. It simply represents “No Result”.
In our example this situation won’t happen. Just to make sure that all code paths returns a value
EmptyResult statement was written.
Note:When ActionMethod return type is Void, it is equivalent to EmptyResult
Hide Copy Code
Hide Copy Code
Press F5 and execute the application. Navigate to Data entry screen and put some valid values.
Lab 13 – Add Server side Validation
In Lab 10 we have seen basic functionality of Model Binder. Let understand a little more about same.
Model binder updates the Employee object with the posted data.
But this is not the only functionality performed by Model Binder. Model Binder also updates
ModelState. ModelState encapsulates the state of the Model.
It have a property called IsValid which determines whether the Model (that is Employee object) gets
successfully updated or not.Model won’t update if any of the server side validation fails.
It holds validation errors.
Example:ModelState["FirstName "].Errors will contain all errors related to First Name
It holds the incoming value(Posted data or queryString data)
It holds the incoming value(Posted data or queryString data)
Before we get into Data Annotation lets understand few more things about Model Binder
When Action method contain primitive type parameter, Model Binder will compare name of the
parameter with each key in the incoming data (Incoming data means either posted data or query
string).
When match is found, corresponding incoming data will be assigned to the parameter.
When match is not found, parameter will be assigned with default value. (Default value – For integer
it is 0 (zero), for string it is null etc.)
In case assignment is not possible because of datatype mismatch exception will be thrown.
How Model Binder work with classes
When parameter is a Class parameter, Model Binder will iterate through all properties of all the class
and compare each property name with each key in incoming data.
Open Employee class from Model folder and decorate FirstName and LastName property with
DataAnnotation attribute as follows.
Hide Copy Code
Hide Copy Code
Note: As you can see, When ModelState.IsValid is false response of SaveEmployee button click is
ViewResult pointing to “CreateEmployee” view.
This time we will format our UI a little with the help of “table” tag;
<table>
<tr>
<td>
First Name:
</td>
<td>
<input type="text" id="TxtFName" name="FirstName" value="" />
</td>
</tr>
<tr>
<td colspan="2" align="right">
@Html.ValidationMessage("FirstName")
</td>
</tr>
<tr>
<td>
Last Name:
</td>
<td>
<input type="text" id="TxtLName" name="LastName" value="" />
</td>
</tr>
<tr>
<td colspan="2" align="right">
@Html.ValidationMessage("LastName")
</td>
</tr>
<tr>
<td>
Salary:
</td>
<td>
<input type="text" id="TxtSalary" name="Salary" value="" />
</td>
</tr>
<tr>
<td colspan="2" align="right">
@Html.ValidationMessage("Salary")
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="BtnSubmit" value="Save Employee" />
<input type="submit" name="BtnSubmit" value="Cancel" />
<input type="button" name="BtnReset" value="Reset" onclick="ResetForm();" />
</td>
</tr>
</table>
Press F5 and execute the application. Navigate to “Employee/AddNew” action method and test the
application.
Test 1
Test 2
Hide Copy Code
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<SalesERPDAL>());
If you are still getting the same error then, open database in Sql server and just delete
__MigrationHistory table.
Soon I will release a new series on Entity Framework where we will learn Entity framework step by
step. This series is intended to MVC and we are trying to stick with it.
Talk on lab 13
What does @Html.ValidationMessage do?
DataType – Make sure that data is of particular type like email, credit card number, URL etc.
EnumDataTypeAttribute–Make sure that value exist in an enumeration.
Range Attribute – Make sure that value is in a particular range.
Regular expression- Validates the value against a particular regular expression.
Required – Make sure that value is provided.
StringthLength – Validates the string for maximum and minimum number of characters.
In Test 1 – we had kept salary as empty string. Now in this case, as per the Model binderexplanation
we had (In Lab 13), ModelState.IsVaid will be false and ModelState will hold validation error related
to Salary which will displayed in view because of Html.ValidationMessage(“Salary”)
Yes, Not only integers but all value types because they can’t hold null values.
Make it nullable?
Hide Copy Code
Default validation support of Salary (because of int datatype) won’t allow us to change the validation
message. We achieve the same by using our own validation like regular expression, range or Custom
Validator.
Because it’s a new request. DataEntry view which was rendered in the beginning and which get
rendered later are same from development perspective but are different from request perspective.
We will learn how to maintain values in Day 4.
Yes simply remove parameters from action method. It stops default model binder from executing by
default.
Hide Copy Code
UpdateModel will throw an exception if Model adaption fails because of any reason. In case of
UpdateModel function ModelState.IsValid will not be of any use.
TryUpdateModel is exactly same as keeping Employee object as function parameter. If updating fails
ModelState.IsValid will be false;
It should be done manually unless and until we are using HTML Helper classes.
We are going to talk about both manual client side validation and automatic client side validation
with the help of HTML helper classes in day 4.
Open Employee.cs file and create a new class Called FirstNameValidation inside it as follows.
Hide Copy Code
Note: Creating multiple classes inside single file is never consider as good practice. So in your sample
I recommend you to create a new folder called “Validations” in root location and create a new class
inside it.
Open Employee class and remove the default “Required” attribute from FirstName property and
attach FirstNameValidation as follows.
Hide Copy Code
[FirstNameValidation]
public string FirstName { get; set; }
Test 1
Test 2