aspnetcore/test/WebSites/RazorPagesWebSite
Ryan Nowak 4bf518b09b Fix #6140 - Allow linking between controller and page
The issue here is that route values used for action selection are
'global'. That means that pages need to have a 'null' route value for
'action' and controllers need to have a 'null' route value for pages. This
is the same way that areas work.

The fix is to move the 'merge' of route values up to a level where pages
and controllers can work together. Since ADPs use the russian-doll
pattern, the fix is to run this 'merge' in the controller ADP, but after
all of the ADs have been created.
2017-04-19 16:48:38 -07:00
..
Controllers Fix #6140 - Allow linking between controller and page 2017-04-19 16:48:38 -07:00
Models
Pages Parity between Controller and Page/PageModel 2017-04-19 15:02:06 -07:00
Services
TempData
Views/Shared Implement view search for pages 2017-04-18 16:11:24 -07:00
CustomActionResult.cs
DefaultNamespace.cshtml Adding functional tests for @namespace 2017-04-14 14:47:29 -07:00
HandlerTestPage.cshtml
HelloWorld.cshtml
HelloWorldWithAuth.cshtml
HelloWorldWithHandler.cshtml
HelloWorldWithPageModelHandler.cs
HelloWorldWithPageModelHandler.cshtml
HelloWorldWithRoute.cshtml
InjectedPageProperties.cshtml
Login.cshtml
ModelHandlerTestModel.cs
ModelHandlerTestPage.cshtml
NoPage.cshtml
OnGetView.cshtml
PageWithoutContent.cshtml
PathSet.cshtml
Program.cs
RazorPagesWebSite.csproj
RedirectToController.cshtml Fix #6140 - Allow linking between controller and page 2017-04-19 16:48:38 -07:00
RouteData.cshtml
Show.cshtml
Startup.cs MVC => Auth 2.0 2017-04-19 11:57:04 -07:00
StartupWithBasePath.cs MVC => Auth 2.0 2017-04-19 11:57:04 -07:00
TagHelpers.cshtml
_Root.cshtml Implement view search for pages 2017-04-18 16:11:24 -07:00
readme.md

readme.md

RazorPagesWebSite

This web site is used for functional tests of the Razor Pages feature of MVC.