May 26, 2019

Srikaanth

WNS Global ASP.NET MVC Interview Questions

WNS Global Most Frequently Asked ASP.NET MVC Interview Questions Answers

Explain TempData in MVC?

TempData is again a key, value pair as ViewData. This is derived from “TempDataDictionary” class. TempData is used when the data is to be used in two consecutive requests, this could be between the actions or between the controllers. This requires typecasting in view.

What are HTML Helpers in MVC?

HTML Helpers are like controls in traditional web forms. But HTML helpers are more lightweight compared to web controls as it does not hold viewstate and events.

HTML Helpers returns the HTML string which can be directly rendered to HTML page. Custom HTML Helpers also can be created by overriding “HtmlHelper” class.

What are AJAX Helpers in MVC?

AJAX Helpers are used to create AJAX enabled elements like as Ajax enabled forms and links which performs the request asynchronously and these are extension methods of AJAXHelper class which exists in namespace — System.Web.Mvc.

What are the options can be configured in AJAX helpers?

Below are the options in AJAX helpers –

Url — This is the request URL.

Confirm — This is used to specify the message which is to be displayed in confirm box.

OnBegin — Javascript method name to be given here and this will be called before the AJAX request.

OnComplete — Javascript method name to be given here and this will be called at the end of AJAX request.

OnSuccess — Javascript method name to be given here and this will be called when AJAX request is successful.

OnFailure — Javascript method name to be given here and this will be called when AJAX request is failed.

UpdateTargetId — Target element which is populated from the action returning HTML.
WNS Global Most Frequently Asked ASP.NET MVC Interview Questions Answers
WNS Global Most Frequently Asked ASP.NET MVC Interview Questions Answers

Explain JSON Binding?

JavaScript Object Notation (JSON) binding support started from MVC3 onwards via the new JsonValueProviderFactory, which allows the action methods to accept and model-bind data in JSON format. This is useful in Ajax scenarios like client templates and data binding that need to post data back to the server.

Explain Dependency Resolution?

Dependency Resolver again has been introduced in MVC3 and it is greatly simplified the use of dependency injection in your applications. This turn to be easier and useful for decoupling the application components and making them easier to test and more configurable.

Explain Bundle.Config in MVC5?

“BundleConfig.cs” in MVC5 is used to register the bundles by the bundling and minification system. Many bundles are added by default including jQuery libraries like — jquery.validate, Modernizr, and default CSS references.

How route table has been created in ASP.NET MVC?

Method — “RegisterRoutes()” is used for registering the routes which will be added in “Application_Start()” method of global.asax file, which is fired when the application is loaded or started.

Which are the important namespaces used in MVC?

Below are the important namespaces used in MVC -

System.Web.Mvc

System.Web.Mvc.Ajax

System.Web.Mvc.Html

System.Web.Mvc.Async

What is ViewData?

Viewdata contains the key, value pairs as dictionary and this is derived from class — “ViewDataDictionary“. In action method we are setting the value for viewdata and in view the value will be fetched by typecasting.

What is Layout in MVC?

Layout pages are similar to master pages in traditional web forms. This is used to set the common look across multiple pages. In each child page we can find — /p>

@{

Layout = “~/Views/Shared/TestLayout1.cshtml”;

}

This indicates child page uses TestLayout page as it’s master page.

Subscribe to get more Posts :