I do not see ASP.NET web pages

I followed Scott Hanselman in Mix11 by creating FrontEnd using WebMatrix. http://live.visitmix.com/Keynotes

One of the first things he does is use a link to an ASP.NET web page. When I start WebMatrix, this option is not available. I downloaded the latest version of web matrix and VS tools. I am running the web matrix as an administrator, but the option is not visible.

What do I need to do to see the administration link?

+4
source share
2 answers

To access the administration page, you need at least one ASP.NET web page file on your site, that is, at least one * .cshtml or * .vbhtml file in the root site directory.

This is because WebMatrix detects these files and only includes the required ASP.NET web page libraries if these files are found.

After adding one of these files, try returning to http: // localhost : / _ Admin again.

+6
source

In webmatrix 3, I also don’t see the admin link, but there is a NuGet package manager on the menu bar and you open it and you can download all the packages you want from it. If you do not have a NuGet package manager, click Extensions on the menu bar and first download the NuGet package manager.

0
source

Source: https://habr.com/ru/post/1347952/


All Articles