문제

I am happily converting to Razor. However, one irritating thing is that when creating a view, it doesn't add the sections for the selected layout (u2bka masterpages...).

Is this to be amended for RTM or is this it??

Either way, where (or to whom) do I whinge? It is an absolute pain putting in all the sections.

PS:

u2bka: Used to be known as.

도움이 되었습니까?

해결책

The Add View dialog for the Razor view engine does not currently support this feature (and probably won't for MVC 3 RTM either). This is because of some fundamental differences between Aspx and Razor. Aspx is declarative which means it's a lot easier to parse in these scenarios. Razor is imperative which means it's a lot more difficult to detect all cases without actually running the page code (which we cannot do because it might have side effects).

But we could consider some heuristics for MVC 4.

다른 팁

I am not too sure in your case but I would strongly suggest you read Andrew's blog post on Razor's nested layouts. It really explains things.

http://aboutcode.net/2010/11/08/nested-layout-pages-in-razor.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top