Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 994dcef

Browse files
Update README.md
1 parent b28871a commit 994dcef

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

‎README.md

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -14,54 +14,54 @@
1414
|6 | [What is ASP.NET MVC?](#What-is-ASP.NET-MVC?)|
1515
|7 | [How MVC pattern works in ASP.NET MVC?](#How-MVC-pattern-works-in-ASP.NET-MVC?)|
1616
|8 | [How Model, View and Controller communicate with each other in ASP.NET MVC?](#How-Model,-View-and-Controller-communicate-with-each-other-in-ASP.NET-MVC?)|
17-
|9 | [What are advantages of ASP.NET MVC?](#Whatareadvantages of ASP.NETMVC?)|
18-
|10| [Explain brief history of ASP.NET MVC?](#Explainbriefhistory of ASP.NETMVC?)|
19-
|1 | [What is difference between 3-layer architecture and MVC architecture?](#What is differencebetween3-layerarchitectureandMVCarchitecture?)|
20-
|2 | [What is difference between ASP.NET WebForm and ASP.NET MVC?](#What is differencebetweenASP.NETWebFormandASP.NET MVC?)|
21-
|3 | [What is ViewModel in ASP.NET MVC?](#What is ViewModel in ASP.NETMVC?)|
22-
|4 | [Explain ASP.NET MVC pipeline?](#ExplainASP.NETMVCpipeline?)|
23-
|5 | [What is Routing in ASP.NET MVC?](#What is Routing in ASP.NETMVC?)|
24-
|6 | [How to define a route in ASP.NET MVC?](#How to define a route in ASP.NETMVC?)|
25-
|7 | [What is Attribute Routing and how to define it?](#What is AttributeRoutingandhow to defineit?)|
26-
|8 | [When to use Attribute Routing?](#When to useAttributeRouting?)|
27-
|9 | [How to enable Attribute Routing in ASP.NET MVC?](#How to enableAttributeRouting in ASP.NETMVC?)|
28-
|10| [How to define Attribute Routing for Area in ASP.NET MVC?](#How to defineAttributeRoutingforArea in ASP.NETMVC?)|
29-
|1 | [What is difference between Routing and URL Rewriting?](#What is differencebetweenRoutingandURLRewriting?)|
30-
|2 | [What is Route Constraints in ASP.NET MVC?](#What is RouteConstraints in ASP.NETMVC?)|
31-
|3 | [How route table is created in ASP.NET MVC?](#Howroutetable is created in ASP.NETMVC?)|
32-
|4 | [What are important namespaces in ASP.NET MVC?](#Whatareimportantnamespaces in ASP.NETMVC?)|
33-
|5 | [What is View Engine? ](#What is ViewEngine? )|
34-
|6 | [How View Engine works? ](#HowViewEngineworks?)|
35-
|7 | [What is Razor View Engine? ](#What is RazorViewEngine? )|
36-
|8 | [How to make Custom View Engine? ](#How to makeCustomViewEngine? )|
37-
|9 | [How to register Custom View Engine in ASP.NET MVC?](#How to registerCustomViewEngine in ASP.NETMVC?)|
38-
|10| [Can you remove default View Engine in ASP.NET MVC?](#CanyouremovedefaultViewEngine in ASP.NETMVC? )|
39-
|1 | [What is difference between Razor and WebForm engine?](#What is differencebetweenRazorandWebFormengine?)|
40-
|2 | [What are HTML Helpers in ASP.NET MVC? ](#WhatareHTMLHelpers in ASP.NETMVC? )|
41-
|3 | [What are different types of HTML Helpers? ](#Whataredifferenttypes of HTMLHelpers? )|
42-
|4 | [What are Url Helpers?](#WhatareUrlHelpers?)|
43-
|5 | [What is Validation Summary?](#What is ValidationSummary?)|
44-
|6 | [What are AJAX Helpers? ](#WhatareAJAXHelpers? )|
45-
|7 | [What is unobtrusive AJAX?](#What is unobtrusiveAJAX?)|
46-
|8 | [What are various configuration options for AJAX Helpers? ](#WhatarevariousconfigurationoptionsforAJAXHelpers?)|
47-
|9 | [What is Cross Domain AJAX?](#What is CrossDomainAJAX?)|
48-
|10| [What are Layouts in ASP.NET MVC?](#WhatareLayouts in ASP.NETMVC?)|
49-
|1 | [What are Sections in ASP.NET MVC?](#WhatareSections in ASP.NETMVC?)|
50-
|2 | [What are RenderBody and RenderPage in ASP.NET MVC?](#WhatareRenderBodyandRenderPage in ASP.NETMVC?)|
51-
|3 | [What are Styles.Render and Scripts.Render?](#WhatareStyles.RenderandScripts.Render?)|
52-
|4 | [How to enable and disable optimizations in ASP.NET MVC?](#How to enableanddisableoptimizations in ASP.NETMVC?)|
53-
|5 | [What is ViewStart?](#What is ViewStart?)|
54-
|6 | [When to use _ViewStart? ](#When to use_ViewStart? )|
55-
|7 | [What are different ways of rendering layout in ASP.NET MVC?](#Whataredifferentways of renderinglayout in ASP.NETMVC?)|
56-
|8 | [What is App_Start folder in ASP.NET MVC?](#What is App_Startfolder in ASP.NETMVC?)|
57-
|9 | [What are different ways of returning/rendering a view in ASP.NET MVC?](#Whataredifferentways of returning/rendering a view in ASP.NETMVC?)|
58-
|10| [What are differences among ViewData, ViewBag, TempData and Session?](#WhataredifferencesamongViewData,ViewBag,TempDataandSession?)|
59-
|1 | [How to persist data in TempData?](#How to persistdata in TempData?)|
60-
|2 | [How to control Session behavior in ASP.NET MVC?](#How to controlSessionbehavior in ASP.NETMVC?)|
61-
|3 | [How TempData is related to Session in ASP.NET MVC? ](#HowTempData is related to Session in ASP.NETMVC? )|
62-
|4 | [What are Action methods in ASP.NET MVC? ](#WhatareActionmethods in ASP.NETMVC? )|
63-
|5 | [What is ActionResult and how is it different from others? ](#What is ActionResultandhow is it differentfromothers?)|
64-
|6 | [How to make a Non-Action method in ASP.NET MVC?](#Howto make a Non-Action method in ASP.NET MVC? )|
17+
|9 | [What are advantages of ASP.NET MVC?](#What-are-advantages-of-ASP.NET-MVC?)|
18+
|10| [Explain brief history of ASP.NET MVC?](#Explain-brief-history-of-ASP.NET-MVC?)|
19+
|1 | [What is difference between 3-layer architecture and MVC architecture?](#What-is-difference-between-3-layer-architecture-and-MVC-architecture?)|
20+
|2 | [What is difference between ASP.NET WebForm and ASP.NET MVC?](#What-is-difference-between-ASP.NET-WebForm-and-ASP.NET MVC?)|
21+
|3 | [What is ViewModel in ASP.NET MVC?](#What-is-ViewModel-in-ASP.NET-MVC?)|
22+
|4 | [Explain ASP.NET MVC pipeline?](#Explain-ASP.NET-MVC-pipeline?)|
23+
|5 | [What is Routing in ASP.NET MVC?](#What-is-Routing-in-ASP.NET-MVC?)|
24+
|6 | [How to define a route in ASP.NET MVC?](#How-to-define-a-route-in-ASP.NET-MVC?)|
25+
|7 | [What is Attribute Routing and how to define it?](#What-is-Attribute-Routing-and-how-to-define-it?)|
26+
|8 | [When to use Attribute Routing?](#When-to-use-Attribute-Routing?)|
27+
|9 | [How to enable Attribute Routing in ASP.NET MVC?](#How-to-enable-Attribute-Routing-in-ASP.NET-MVC?)|
28+
|10| [How to define Attribute Routing for Area in ASP.NET MVC?](#How-to-define-Attribute-Routing-for-Area-in-ASP.NET-MVC?)|
29+
|1 | [What is difference between Routing and URL Rewriting?](#What-is-difference-between-Routing-and-URL-Rewriting?)|
30+
|2 | [What is Route Constraints in ASP.NET MVC?](#What-is-Route-Constraints-in-ASP.NET-MVC?)|
31+
|3 | [How route table is created in ASP.NET MVC?](#How-route-table-is-created-in-ASP.NET-MVC?)|
32+
|4 | [What are important namespaces in ASP.NET MVC?](#What-are-important-namespaces-in-ASP.NET-MVC?)|
33+
|5 | [What is View Engine? ](#What-is-View-Engine? )|
34+
|6 | [How View Engine works? ](#How-View-Engine-works?)|
35+
|7 | [What is Razor View Engine? ](#What-is-Razor-View-Engine? )|
36+
|8 | [How to make Custom View Engine? ](#How-to-make-Custom-View-Engine? )|
37+
|9 | [How to register Custom View Engine in ASP.NET MVC?](#How-to-register-Custom-View-Engine-in-ASP.NET-MVC?)|
38+
|10| [Can you remove default View Engine in ASP.NET MVC?](#Can-you-remove-default-View-Engine-in-ASP.NET-MVC? )|
39+
|1 | [What is difference between Razor and WebForm engine?](#What-is-difference-between-Razor-and-WebForm-engine?)|
40+
|2 | [What are HTML Helpers in ASP.NET MVC? ](#What-are-HTML-Helpers-in-ASP.NET-MVC? )|
41+
|3 | [What are different types of HTML Helpers? ](#What-are-different-types-of-HTML-Helpers? )|
42+
|4 | [What are Url Helpers?](#What-are-Url-Helpers?)|
43+
|5 | [What is Validation Summary?](#What-is-Validation-Summary?)|
44+
|6 | [What are AJAX Helpers? ](#What-are-AJAX-Helpers? )|
45+
|7 | [What is unobtrusive AJAX?](#What-is-unobtrusive-AJAX?)|
46+
|8 | [What are various configuration options for AJAX Helpers? ](#What-are-various-configuration-options-for-AJAX-Helpers?)|
47+
|9 | [What is Cross Domain AJAX?](#What-is-Cross-Domain-AJAX?)|
48+
|10| [What are Layouts in ASP.NET MVC?](#What-are-Layouts-in-ASP.NET-MVC?)|
49+
|1 | [What are Sections in ASP.NET MVC?](#What-are-Sections-in-ASP.NET-MVC?)|
50+
|2 | [What are RenderBody and RenderPage in ASP.NET MVC?](#What-are-RenderBody-and-RenderPage-in-ASP.NET-MVC?)|
51+
|3 | [What are Styles.Render and Scripts.Render?](#What-are-Styles.Render-and-Scripts.Render?)|
52+
|4 | [How to enable and disable optimizations in ASP.NET MVC?](#How-to-enable-and-disable-optimizations-in-ASP.NET-MVC?)|
53+
|5 | [What is ViewStart?](#What-is-ViewStart?)|
54+
|6 | [When to use _ViewStart? ](#When-to-use-_ViewStart? )|
55+
|7 | [What are different ways of rendering layout in ASP.NET MVC?](#What-are-different-ways-of-rendering-layout-in-ASP.NET-MVC?)|
56+
|8 | [What is App_Start folder in ASP.NET MVC?](#What-is-App_Start-folder-in-ASP.NET-MVC?)|
57+
|9 | [What are different ways of returning/rendering a view in ASP.NET MVC?](#What-are-different-ways-of-returning/rendering-a-view-in-ASP.NET-MVC?)|
58+
|10| [What are differences among ViewData, ViewBag, TempData and Session?](#What-are-differences-among-ViewData,-ViewBag,-TempData-and-Session?)|
59+
|1 | [How to persist data in TempData?](#How-to-persist-data-in-TempData?)|
60+
|2 | [How to control Session behavior in ASP.NET MVC?](#How-to-control-Session-behavior-in-ASP.NET-MVC?)|
61+
|3 | [How TempData is related to Session in ASP.NET MVC? ](#How-TempData-is-related-to-Session-in-ASP.NET-MVC? )|
62+
|4 | [What are Action methods in ASP.NET MVC? ](#What-are-Action-methods-in-ASP.NET-MVC? )|
63+
|5 | [What is ActionResult and how is it different from others? ](#What-is-ActionResult-and-how-is-it-different-from-others?)|
64+
|6 | [How to make a Non-Action method in ASP.NET MVC?](#How-to make a Non-Action method in ASP.NET MVC? )|
6565
|7 | [Can you change action method name?](#Can you change action method name?)|
6666
|8 | [How to restrict an action method to be invoked only by HTTP GET, POST, PUT or DELETE?](#How to restrict an action method to be invoked only by HTTP GET, POST, PUT or DELETE?)|
6767
|9 | [How to determine an action method is invoked by HTTP GET or POST?](#How to determine an action method is invoked by HTTP GET or POST?)|

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /