In the _Layout.cshtml
file, I have such a @RenderSection("head", false)
method.
In partial form, UploadForm.cshtml
I have the code below.
When I launch the web application, the head
section is not displayed. How to solve this problem?
@section head { <script type="text/javascript"> </script> }
Tomas source share