April 6, 2019

Srikaanth

ThoughtWorks Frequently Asked ASP.NET MVC Interview Questions

What Is Razor View Engine?

Razor is the first major update to render HTML in ASP.Net MVC 3. Razor was designed specifically for view engine syntax. Main focus of this would be to simplify and code-focused templating for HTML generation.

Below is the sample of using Razor

@model ASP.Net MVCMusicStore.Models.Customer

@{ViewBag.Title = "Get Customers";}

< div class="cust">

@Model.CustomerName

What Is The Meaning Of Unobtrusive Javascript? Explain Us By Any Practical Example?

This is a general term that conveys a general philosophy, similar to the term REST (Representational State Transfer). Unobtrusive JavaScript doesn't inter mix JavaScript code in your page markup. Eg : Instead of using events like onclick and onsubmit, the unobtrusive JavaScript attaches to elements by their ID or class based on the HTML5 data- attributes.

Breifly Explain Us What Is Asp.net Mvc?

ASP.Net MVC is a pattern which is used to split the application's implementation logic into three components i.e. models, views, and controllers.
ThoughtWorks Most Frequently Asked ASP.NET MVC Interview Questions Answers
ThoughtWorks Most Frequently Asked ASP.NET MVC Interview Questions Answers

Tell Us Something About Model, View And Controllers In Asp.net Mvc?

Model : It is basically a business entity which is used to represent the application data.

Controller : The Request which is sent by the user always scatters through controller and it's responsibility is to redirect to the specific view using View () method.

View : it's the presentation layer of ASP.Net MVC.

Do You Know About The New Features In Asp.net Mvc 4 (asp.net Mvc4)?

Following are features added newly : Mobile templates Added ASP.NET Web API template for creating REST based services. Asynchronous controller task support. Bundling of the java scripts. Segregating the configs for ASP.Net MVC routing, Web API, Bundle etc.

What Is The Use Of View Model In Asp.net Mvc?

View Model is a plain class with properties, which is used to bind it to strongly typed view. View Model can have the validation rules defined for its properties using data annotations.

What You Mean By Routing In Asp.net Mvc?

Routing is a pattern matching mechanism of incoming requests to the URL patterns which are registered in route table. Class : "UrlRoutingModule" is used for the same process.

What Are Actions In Asp.net Mvc?

Actions are the methods in Controller class which is responsible for returning the view or json data. Action will mainly have return type : "ActionResult" and it will be invoked from method : "InvokeAction()" called by controller.

What Is Attribute Routing In Asp.net Mvc?

ASP.NET Web API supports this type routing. This is introduced in ASP.Net MVC5. In this type of routing, attributes are being used to define the routes. This type of routing gives more control over classic URI Routing.

Attribute Routing can be defined at controller level or at Action level like

[Route("{action = TestCategoryList}")] - Controller Level

[Route("customers/{TestCategoryId:int:min(10)}")] - Action Level

How To Enable Attribute Routing?

Just add @Model.CustomerName the method : "MapASP.Net MVCAttributeRoutes()" to enable attribute routing as shown below

public static void RegisterRoutes(RouteCollection routes)

    {

        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        //enabling attribute routing

        routes.MapASP.Net MVCAttributeRoutes();

        //convention-based routing

        routes.MapRoute

        (

            name: "Default",

            url: "{controller}/{action}/{id}",

            defaults: new { controller = "Customer", action = "GetCustomerList", id = UrlParameter.Optional }

        );

  }

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.

What Is Layout In Asp.net 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.

Explain Json Binding?

JavaScript Object Notation (JSON) binding support started from ASP.Net 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 ASP.Net 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 Asp.net Mvc4?

"BundleConfig.cs" in ASP.Net MVC4 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 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 Asp.net Mvc?

Below are the important namespaces used in ASP.Net MVC

System.Web.ASP.Net MVC
System.Web.ASP.Net MVC.Ajax
System.Web.ASP.Net MVC.Html
System.Web.ASP.Net 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.

https://mytecbooks.blogspot.com/2019/04/thoughtworks-frequently-asked-aspnet.html
Subscribe to get more Posts :