MVC Interview Questions With Answers - CodeProject PDF
MVC Interview Questions With Answers - CodeProject PDF
The whole purpose of this article is to quickly brush up your MVC knowledge from ASP.NET MVC interview perspective.
Table of content
Disclaimer
What is MVC (Model view controller)?
Explain MVC application life cycle?
Is MVC suitable for both Windows and web applications?
What are the benefits of using MVC?
Is MVC different from a three layered architecture?
What is the latest version of MVC?
What is the difference between each version of MVC 2, 3 , 4, 5 and 6?
What are HTML helpers in MVC?
What is the difference between “HTML.TextBox” vs “HTML.TextBoxFor”?
What is routing in MVC?
Where is the route mapping code written?
Can we map multiple URLs to the same action?
Explain attribute based routing in MVC?
What is the advantage of defining route structures in the code?
How can we navigate from one view to other view using a hyperlink?
How can we restrict MVC actions to be invoked only by GET or POST?
How can we maintain sessions in MVC?
What is the difference between tempdata, viewdata, and viewbag?
What is difference between TempData and ViewData ?
Does “TempData” preserve data in the next request also?
What is the use of Keep and Peek in “TempData”?
What are partial views in MVC?
How do you create a partial view and consume it?
How can we do validations in MVC?
Can we display all errors in one go?
How can we enable data annotation validation on the client side?
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 1/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
Disclaimer
Reading these MVC interview questions does not mean you will go and clear MVC interviews. The purpose of this article is to quickly
brush up your MVC knowledge before you go for MVC interviews. This article does not teach Asp.net MVC step by step, it’s a last minute
revision sheet before going for MVC interviews.
If you want to learn MVC from scratch, start by reading Learn MVC ( Model view controller) step by step 7 days or you can also start with
my step by step MVC (Model View Controller) video series from YouTube.
If you want to learn MVC 5 in a short time i.e. 2 days a.k.a 16 hours below is a video series for the same.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 2/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
There are six broader events which occur in MVC application life cycle below diagrams summarize it.
Any web application has two main execution steps first understanding the request and depending on the type of the request sending
out appropriate response. MVC application life cycle is not different it has two main phases first creating the request object and second
sending our response to the browser.
Creating the request object: -The request object creation has four major steps. Below is the detail explanation of the same.
Step 1 Fill route: - MVC requests are mapped to route tables which in turn specify which controller and action to be invoked. So if the
request is the first request the first thing is to fill the route table with routes collection. This filling of route table happens in the
global.asax file.
Step 2 Fetch route: - Depending on the URL sent “UrlRoutingModule” searches the route table to create “RouteData” object which has
the details of which controller and action to invoke.
Step 3 Request context created: - The “RouteData” object is used to create the “RequestContext” object.
Step 4 Controller instance created: - This request object is sent to “MvcHandler” instance to create the controller class instance. Once
the controller class object is created it calls the “Execute” method of the controller class.
Creating Response object: - This phase has two steps executing the action and finally sending the response as a result to the view.
Separation of concerns is achieved as we are moving the code-behind to a separate class file. By moving the binding code to a
separate class file we can reuse the code to a great extent.
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 4/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
MVC is an evolution of a three layered traditional architecture. Many components of the three layered architecture are part of MVC. So
below is how the mapping goes:
Side by side - deploy the runtime and framework with your application
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 5/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
No need to recompile for every change. Just hit save and refresh the browser.
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
MVC 2
Client-Side Validation
Templated Helpers
Areas
Asynchronous Controllers
DataAnnotations Attributes
Model-Validator Providers
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 6/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
Templated Helpers
For checkbox below is the HTML helper code. In this way we have HTML helper methods for every HTML control that exists.
Html.TextBox("CustomerCode")
Below is “Html.TextBoxFor” code which creates HTML textbox using the property name ‘CustomerCode” from object “m”.
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.
routes.MapRoute(
"View", // Route name
"View/ViewCustomer/{id}", // URL with parameters
new { controller = "Customer", action = "DisplayCustomer",
id = UrlParameter.Optional }); // Parameter defaults
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 7/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 8/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
By using the ActionLink method as shown in the below code. The below code will create a simple URL which helps to navigate to
the “Home” controller and invoke the GotoHome action.
[HttpGet]
public ViewResult DisplayCustomer(int id)
{
Customer objCustomer = Customers[id];
return View("DisplayCustomer",objCustomer);
}
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 9/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
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.
@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.
If you want to read more in detail you can read from this detailed blog on MVC Peek and Keep.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 11/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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:
<body>
<div>
<% Html.RenderPartial("MyView"); %>
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 12/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
</div>
</body>
This CustomerCode property is tagged with a Required data annotation attribute. In other words if this model is not provided
customer code, it will not accept it.
In order to display the validation error message we need to use the ValidateMessageFor method which belongs to the Html
helper class.
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.
Below is a simple view of how the error message is displayed on the view.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 13/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
If you want to check whether the numbers are in range, you can use the Range attribute.
Sometimes you would like to compare the value of one field with another field, we can use the Compare attribute.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 14/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
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.
TryUpdateModel(NewCustomer);
In case you want add errors in the controller you can use the AddModelError function.
<%=DateTime.Now%>
@DateTime.Now
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 15/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
<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.
[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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 16/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
FormsAuthentication.SetAuthCookie("Shiv",true);
return View("About");
}
else
{
return View("Index");
}
}
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.
[Authorize]
PublicActionResult Default()
{
return View();
}
[Authorize]
publicActionResult About()
{
return View();
}
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.
<script language="javascript">
function OnSuccess(data1)
{
// Do something here
}
</script>
<div>
<%
var AjaxOpt = new AjaxOptions{OnSuccess="OnSuccess"};
%>
<% using (Ajax.BeginForm("getCustomer","MyAjax",AjaxOpt)) { %>
<input id="txtCustomerCode" type="text" /><br />
<input id="txtCustomerName" type="text" /><br />
<input id="Submit2" type="submit" value="submit"/></div>
<%} %>
In case you want to make AJAX calls on hyperlink clicks, you can use the Ajax.ActionLink function as shown in the below code.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 17/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
So if you want to create an AJAX asynchronous hyperlink by name GetDate which calls the GetDate function in the controller,
below is the code for that. Once the controller responds, this data is displayed in the HTML DIV tag named DateDiv.
Below is the controller code. You can see how the GetDate function has a pause of 10 seconds.
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.
function GetData()
{
var url = "/MyAjax/getCustomer";
$.post(url, function (data)
{
$("#txtCustomerCode").val(data.CustomerCode);
$("#txtCustomerName").val(data.CustomerName);
}
)
}
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 18/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 19/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
Note: It’s difficult to remember all the 12 types. But some important ones you can remember for the interview are ActionResult,
ViewResult, and JsonResult. Below is a detailed list for your interest:
There 12 kinds of results in MVC, at the top is the ActionResult class which is a base class that can have 11 subtypes as listed
below:
To create an inline action attribute we need to implement the IActionFilter interface. The IActionFilter interface has two
methods: OnActionExecuted and OnActionExecuting. We can implement pre-processing logic or cancellation logic in these
methods.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 20/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
The problem with the inline action attribute is that it cannot be reused across controllers. So we can convert the inline action filter to an
action filter attribute. To create an action filter attribute we need to inherit from ActionFilterAttribute 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.
[MyActionAttribute]
public class Default1Controller : Controller
{
public ActionResult Index(Customer obj)
{
return View(obj);
}
}
2. Action filters
3. Response filters
4. Exception filters
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.
Step 2: We need to create a class which inherits from VirtualPathProviderViewEngine and in this class we need to provide
the folder path and the extension of the view name. For instance, for Razor the extension is “cshtml”; for aspx, the view extension is
“.aspx”, so in the same way for our custom view, we need to provide an extension. Below is how the code looks like. You can see the
ViewLocationFormats is set to the Views folder and the extension is “.myview”.
Hide Shrink 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:
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 23/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
Below is the JSON output of the above code if you invoke the action via the browser.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 24/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
But WCF SOAP also does the same thing, so how does WebAPI
differ?
SOAP WEB API
S
i
Heavy weight because of complicated WSDL structure. Light weight, only the necessary information is transferred.
z
e
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 25/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
P
r
o
t
Independent of protocols. Only for HTTP protocol
o
c
o
l
F
o To parse SOAP message, the client needs to understand
r WSDL format. Writing custom code for parsing WSDL is a
Output of WebAPI are simple string messages, JSON, simple XML
m heavy duty task. If your client is smart enough to create
format, etc. So writing parsing logic for that is very easy.
a proxy objects like how we have in .NET (add reference) then
t SOAP is easier to consume and call.
s
P
r
i
n
c WebAPI follows REST principles. (Please refer to REST in WCF
SOAP follows WS-* specification.
i chapter.)
p
l
e
s
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 26/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
Step 3: If you make an HTTP GET call you should get the below results:
Figure: HTTP
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 27/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
For example consider the below web request to a page . This page consumes two JavaScript files Javascript1.js and Javascript2.js. So
when this is page is requested it makes three request calls:
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).
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 28/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 29/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
In BundleConfig.cs, add the JS files you want bundle into a single entity in to the bundles collection. In the below code we are combining
all the javascript JS files which exist in the Scripts folder as a single unit in to the bundle collection.
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.
If you now see your page requests you would see that script request is combined into one request.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 31/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
BundleTable.EnableOptimizations = true;
// 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.
var x=0;x=x+1;x=x*2;
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 32/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 33/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 34/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
For example below is a simple customermodel object with “CustomerName” and “Amount” property.
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 35/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 36/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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.
In the view we can refer both the model using the view model as shown in the below code.
For example we can create a view “Home.aspx” which will render for the desktop computers and
Home.Mobile.aspx for mobile devices. Now when an end user sends a request to the MVC application, display
mode checks the “user agent” headers and renders the appropriate view to the device accordingly.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 37/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
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).
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 38/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
For instance if you choose “using Entity framework” template the following code is generated.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 39/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
It creates controller code, view and also table structure as shown in the below figure.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 40/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
We have also set the exception so that it can be displayed inside the view.
};
}
}
To display the above error in view we can use the below code
Take a scenario where you have a view with two submit buttons as shown in the below code.
In the above code when the end user clicks on any of the submit buttons it will make a HTTP POST to “Action1”.
“What if we have want that on “Submit1” button click it should invoke “Action1” and on the “Submit2” button click it should invoke
“Action2”.”
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.
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.
$.post("/Action2",null,CallBack2);
}
</Script>
<form action="/Action1" method=post>
<input type=submit name=sub1 onclick="Fun2()"/>
</form>
<form action="/Action2" method=post>
<input type=submit name=sub2 onclick="Fun1()"/>
</form>
“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.
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.
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.
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.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 43/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
[ValidateAntiForgeryToken]
public ActionResult Transfer()
{
// password sending logic will be here
return Content(Request.Form["amount"] +
" has been transferred to account "
+ Request.Form["account"]);
}
Transfer money <form action="Transfer" method=post> Enter Amount <input type="text" name="amount" value="" />
Enter Account number
@Html.AntiForgeryToken() <input type=submit value="transfer money" /> </form>
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.
Please do read this blog which has detailed steps of how model binders can be created using “IModelBinder” interface: - Explain
MVC model Binders?
Download an e-learning copy of MVC interview Q&A from the top of this article for your preparation.
For technical training related to various topics including ASP.NET, Design Patterns, WCF, MVC, BI, WPF contact
SukeshMarla@gmail.com or visit www.sukesh-marla.com
Finally do not forget to visit my video site which covers lots of C# interview questions and answers:
www.questpond.com.
License
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Share
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 44/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
Shivprasad koirala
Architect https://www.questpond.com
India
Code re-usability is my passion ,Teaching and learning is my hobby, Becoming an successful entrepreneur is my goal.
My site...
show more
Search Comments
MVC [NonAction]
Member 9331892 5-Mar-18 17:32
My vote of 5
NF Khan 21-Jan-18 20:13
My vote of 1
Adityakumar2318 30-Nov-17 23:32
Message Closed
9-Apr-18 4:49
Good Article.
Md. Mansur Haider 17-Aug-17 2:03
Nice Collection
Er Sagar Mahajan Pune 27-Jul-17 2:18
Excellent!
rezaru2000 8-Jun-17 15:57
Separation of Concerns
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 46/47
9/18/2019 ASP.NET MVC interview questions with answers - CodeProject
Great !
AnitaMarechal 7-Nov-16 20:49
My vote of 5
teckyravi 18-Oct-16 17:32
My vote of 5
Manoj Kumar Choubey 21-Jun-16 3:11
Refresh 1 2 3 4 5 6 7 8 9 10 11 Next »
General News Suggestion Question Bug Answer Joke Praise Rant Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
https://www.codeproject.com/Articles/556995/ASP-NET-MVC-interview-questions-with-answers 47/47