How to call ASP MVC CSHTML View directly with “.cs

2019-06-11 07:02发布

问题:

I want to call my asp mvc CSHTML View directly from browser with ".cshtml" extension like:

    www.mysite.com\receive.cshtml?...

instead

    www.mysite.com\receive?...

but i got 404

any idea ?

回答1:

1. By default IIS Request Filtering is configured not to serve requests to .cshtml files.

2. Razor views are not meant to be accessed directly by the client. yet, take a look at https://github.com/ServiceStack/RazorRockstars