Reputation: 13
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 ?
Upvotes: 0
Views: 9969
Reputation: 49095
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
Upvotes: 1