Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想强制ArticleController在Article从. 请注意,我知道如何更改视图中的继承,我会这样做。现在我想再次更改一个特殊的目录视图。我该怎么做?ViewCustomViewClassRazor
ArticleController
Article
View
CustomViewClass
Razor
Web.config
<?xml version="1.0"?> <configuration> <system.web.webPages.razor> <pages pageBaseType="Your.NameSpace.CustomViewClass"> </pages> </system.web.webPages.razor> </configuration>
现在Article目录中的所有视图都将继承自CustomViewClass.