Browse Source

Removing pageId from route

Fixes #104. The parameter should be passed as a querystring, not a route parameter.
main
Steve Smith 8 years ago
parent
commit
005d83d802
  1. 2
      src/WebRazorPages/Pages/Index.cshtml

2
src/WebRazorPages/Pages/Index.cshtml

@ -1,4 +1,4 @@
@page "{pageId?}" @page
@{ @{
ViewData["Title"] = "Catalog"; ViewData["Title"] = "Catalog";
@model IndexModel @model IndexModel

Loading…
Cancel
Save