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 de3a666

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

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

‎README.md

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -61,51 +61,51 @@
6161
|3 | [How TempData is related to Session in ASP.NET MVC? ](#How-TempData-is-related-to-Session-in-ASP.NET-MVC? )|
6262
|4 | [What are Action methods in ASP.NET MVC? ](#What-are-Action-methods-in-ASP.NET-MVC? )|
6363
|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-tomake a Non-Actionmethod in ASP.NETMVC? )|
65-
|7 | [Can you change action method name?](#Canyouchangeactionmethodname?)|
66-
|8 | [How to restrict an action method to be invoked only by HTTP GET, POST, PUT or DELETE?](#How to restrict an actionmethod to be invokedonly by HTTPGET,POST,PUT or DELETE?)|
67-
|9 | [How to determine an action method is invoked by HTTP GET or POST?](#How to determine an actionmethod is invoked by HTTPGET or POST?)|
68-
|10| [How to determine an AJAX request?](#How to determine an AJAXrequest?)|
69-
|1 | [What is Data Annotations in ASP.NET MVC?](#What is DataAnnotations in ASP.NETMVC?)|
70-
|2 | [How to apply Server side validation in ASP.NET MVC?](#How to applyServersidevalidation in ASP.NETMVC?)|
71-
|3 | [How to determine there is no error in Model State?](#How to determinethere is no error in ModelState?)|
72-
|4 | [How to enable and disable client-side validation in ASP.NET MVC?](#How to enableanddisableclient-sidevalidation in ASP.NETMVC?)|
73-
|5 | [What is a CDN and advantages of CDN?](#What is a CDNandadvantages of CDN?)|
74-
|6 | [What is jquery.validate.unobtrusive.js?](#What is jquery.validate.unobtrusive.js?)|
75-
|7 | [What is Bundling and Minification in ASP.NET MVC? ](#What is BundlingandMinification in ASP.NETMVC? )|
76-
|8 | [Can we use Bundling and Minification in ASP.NET MVC3 or ASP.NET4.0?](#Can we useBundlingandMinification in ASP.NETMVC3 or ASP.NET4.0?)|
77-
|9 | [How Bundling use browser Cache capability?](#HowBundlingusebrowserCachecapability? )|
78-
|10| [What is Partial View in ASP.NET MVC?](#What is PartialView in ASP.NETMVC?)|
79-
|1 | [How do you return a partial view from controller? ](#How do youreturn a partialviewfromcontroller? )|
80-
|2 | [What are different ways of rendering a Partial View in ASP.NET MVC?](#Whataredifferentways of rendering a PartialView in ASP.NETMVC?)|
81-
|3 | [What is Area in ASP.NET MVC? ](#What is Area in ASP.NETMVC? )|
82-
|4 | [How to register Area in ASP.NET MVC?](#How to registerArea in ASP.NETMVC?)|
83-
|5 | [What is Child action and how to invoke it? ](#What is Childactionandhow to invokeit? )|
84-
|6 | [What is Scaffolding? ](#What is Scaffolding? )|
85-
|7 | [How Scaffold templates works in ASP.NET MVC?](#HowScaffoldtemplatesworks in ASP.NETMVC?)|
86-
|8 | [What are ASP.NET MVC Filters and Attributes? ](#WhatareASP.NETMVCFiltersandAttributes? )|
87-
|9 | [What are different types of Filters in ASP.NET MVC? ](#Whataredifferenttypes of Filters in ASP.NETMVC?)|
88-
|10| [When Exception filters are executed in ASP.NET MVC? ](#WhenExceptionfiltersareexecuted in ASP.NETMVC? )|
89-
|1 | [What is the order of execution of filters in ASP.NET MVC? ](#What is theorder of execution of filters in ASP.NETMVC? )|
90-
|2 | [How to configure filters in ASP.NET MVC?](#How to configurefilters in ASP.NETMVC? )|
91-
|3 | [How Authentication and Authorization work in ASP.NET MVC?](#HowAuthenticationandAuthorizationwork in ASP.NETMVC?)|
92-
|4 | [How Forms Authentication and Authorization work in ASP.NET MVC? ](#HowFormsAuthenticationandAuthorizationwork in ASP.NETMVC? )|
93-
|5 | [How to implement custom Forms Authentication and Authorization in MVC?](#How to implementcustomFormsAuthenticationandAuthorization in MVC?)|
94-
|6 | [How to allow HTML tags in ASP.NET MVC? ](#How to allowHTMLtags in ASP.NETMVC? )|
95-
|7 | [What is caching and when to use it? ](#What is cachingandwhen to useit? )|
96-
|8 | [What are advantages of caching?](#Whatareadvantages of caching?)|
97-
|9 | [What is output caching?](#What is outputcaching?)|
98-
|10| [What is Donut caching and Donut hole caching in ASP.NET MVC?](#What is DonutcachingandDonutholecaching in ASP.NET MVC?)|
99-
|1 | [What is loose coupling and how is it possible?](#What is loosecouplingandhow is it possible?)|
100-
|2 | [What are Dependency Inversion Principle (DIP) and IoC?](#WhatareDependencyInversionPrinciple(DIP)andIoC?)|
101-
|3 | [What is Dependency Injection (DI)?](#What is DependencyInjection(DI)?)|
102-
|4 | [What is Service Locator?](#What is ServiceLocator?)|
103-
|5 | [What are different ways to implement Dependency Injection (DI)?](#Whataredifferentways to implementDependencyInjection (DI)?)|
104-
|6 | [What are advantages of Dependency Injection (DI)?](#Whatareadvantages of DependencyInjection(DI)?)|
105-
|7 | [What is IoC or DI container? ](#What is IoC or DI container?)|
106-
|8 | [What are popular DI containers?](#Whatarepopular DI containers?)|
107-
|9 | [What is Test Driven Development (TDD)?](#What is TestDrivenDevelopment(TDD)?)|
108-
|10| [What are commonly used tool for Unit Testing in ASP.NET MVC?](#WhatarecommonlyusedtoolforUnitTesting in ASP.NETMVC?)|
64+
|6 | [How to make a Non-Action method in ASP.NET MVC?](#How-to-make-a-on-Action-method-in-ASP.NET-MVC? )|
65+
|7 | [Can you change action method name?](#Can-you-change-action-method-name?)|
66+
|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?)|
67+
|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?)|
68+
|10| [How to determine an AJAX request?](#How-to-determine-an-AJAX-request?)|
69+
|1 | [What is Data Annotations in ASP.NET MVC?](#What-is-Data-Annotations-in-ASP.NET-MVC?)|
70+
|2 | [How to apply Server side validation in ASP.NET MVC?](#How-to-apply-Server-side-validation-in-ASP.NET-MVC?)|
71+
|3 | [How to determine there is no error in Model State?](#How-to-determine-there-is-no-error-in-Model-State?)|
72+
|4 | [How to enable and disable client-side validation in ASP.NET MVC?](#How-to-enable-and-disable-client-side-validation-in-ASP.NET-MVC?)|
73+
|5 | [What is a CDN and advantages of CDN?](#What-is-a-CDN-and-advantages-of-CDN?)|
74+
|6 | [What is jquery.validate.unobtrusive.js?](#What-is-jquery.validate.unobtrusive.js?)|
75+
|7 | [What is Bundling and Minification in ASP.NET MVC? ](#What-is-Bundling-and-Minification-in-ASP.NET-MVC? )|
76+
|8 | [Can we use Bundling and Minification in ASP.NET MVC3 or ASP.NET4.0?](#Can-we-use-Bundling-and-Minification-in-ASP.NET-MVC3-or-ASP.NET4.0?)|
77+
|9 | [How Bundling use browser Cache capability?](#How-Bundling-use-browser-Cache-capability? )|
78+
|10| [What is Partial View in ASP.NET MVC?](#What-is-Partial-View-in-ASP.NET-MVC?)|
79+
|1 | [How do you return a partial view from controller? ](#How-do-you-return-a-partial-view-from-controller? )|
80+
|2 | [What are different ways of rendering a Partial View in ASP.NET MVC?](#What-are-different-ways-of-rendering-a-Partial-View-in-ASP.NET-MVC?)|
81+
|3 | [What is Area in ASP.NET MVC? ](#What-is-Area-in-ASP.NET-MVC? )|
82+
|4 | [How to register Area in ASP.NET MVC?](#How-to-register-Area-in-ASP.NET-MVC?)|
83+
|5 | [What is Child action and how to invoke it? ](#What-is-Child-action-and-how-to-invoke-it? )|
84+
|6 | [What is Scaffolding? ](#What-is-Scaffolding? )|
85+
|7 | [How Scaffold templates works in ASP.NET MVC?](#How-Scaffold-templates-works-in-ASP.NET-MVC?)|
86+
|8 | [What are ASP.NET MVC Filters and Attributes? ](#What-are-ASP.NET-MVC-Filters-and-Attributes? )|
87+
|9 | [What are different types of Filters in ASP.NET MVC? ](#What-are-different-types-of-Filters-in-ASP.NET-MVC?)|
88+
|10| [When Exception filters are executed in ASP.NET MVC? ](#When-Exception-filters-are-executed-in-ASP.NET-MVC? )|
89+
|1 | [What is the order of execution of filters in ASP.NET MVC? ](#What-is-the-order-of-execution-of-filters-in-ASP.NET-MVC? )|
90+
|2 | [How to configure filters in ASP.NET MVC?](#How-to-configure-filters-in-ASP.NET-MVC? )|
91+
|3 | [How Authentication and Authorization work in ASP.NET MVC?](#How-Authentication-and-Authorization-work-in-ASP.NET-MVC?)|
92+
|4 | [How Forms Authentication and Authorization work in ASP.NET MVC? ](#How-Forms-Authentication-and-Authorization-work-in-ASP.NET-MVC? )|
93+
|5 | [How to implement custom Forms Authentication and Authorization in MVC?](#How-to-implement-custom-Forms-Authentication-and-Authorization-in-MVC?)|
94+
|6 | [How to allow HTML tags in ASP.NET MVC? ](#How-to-allow-HTML-tags-in-ASP.NET-MVC? )|
95+
|7 | [What is caching and when to use it? ](#What-is-caching-and-when-to-use-it? )|
96+
|8 | [What are advantages of caching?](#What-are-advantages-of-caching?)|
97+
|9 | [What is output caching?](#What-is-output-caching?)|
98+
|10| [What is Donut caching and Donut hole caching in ASP.NET MVC?](#What-is-Donut-caching-and-Donut-hole-caching-in-ASP.NET MVC?)|
99+
|1 | [What is loose coupling and how is it possible?](#What-is-loose-coupling-and-how-is-it-possible?)|
100+
|2 | [What are Dependency Inversion Principle (DIP) and IoC?](#What-are-Dependency-Inversion-Principle-(DIP)-and-IoC?)|
101+
|3 | [What is Dependency Injection (DI)?](#What-is-Dependency-Injection-(DI)?)|
102+
|4 | [What is Service Locator?](#What-is-Service-Locator?)|
103+
|5 | [What are different ways to implement Dependency Injection (DI)?](#What-are-different-ways-to-implement-Dependency-Injection (DI)?)|
104+
|6 | [What are advantages of Dependency Injection (DI)?](#What-are-advantages-of-Dependency-Injection-(DI)?)|
105+
|7 | [What is IoC or DI container? ](#What-is-IoC-or-DI-container?)|
106+
|8 | [What are popular DI containers?](#What-are-popular-DI-containers?)|
107+
|9 | [What is Test Driven Development (TDD)?](#What-is-Test-Driven-Development-(TDD)?)|
108+
|10| [What are commonly used tool for Unit Testing in ASP.NET MVC?](#What-are-commonly-used-tool-for-Unit-Testing-in-ASP.NET-MVC?)|
109109

110110

111111

0 commit comments

Comments
(0)

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