これは私の_Layout.cshtmlです
<html>
<head>
@RenderSection("Script", false)
</head>
...
</html>
これは簡単な編集ページ edit.cshtml です
@model Shop.Models.Product
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@Html.EditorForModel()
これは ~/Views/Shared/EditorTemplates/Product.cshtml です
@model Shop.Models.Product
@section Script {
<script>alert("hello");</script>
}
...
@section Script{...}
EditorForModel のため、Product.cshtml では機能しません。どうすればできますか?