System.Web.HttpException: The file "~/xxx//Index.cshtml" cannot be requested directly because it cal
刚开始用Razor的时候经常把RenderSection当作RenderPartial的替代品,其实它是ContentHolder的替代品。
Section的意图是在上级页面(原来的master)中建立一个空间,在子级页面中向其中根据需要填充内容。因此不能在被直接调用的子页面(如index)中直接写RenderSetion,而只能写@section。
因此直接访问带有RenderSection的页面,相当于直接调用master。
本文转自火星人陈勇 51CTO博客,原文链接:http://blog.51cto.com/cheny/1099792