I want to include the script tag below using @HTML.Raw method:
<script type="text/javascript" src="~/App/durandal/amd/require.js" data-main="@Url.Content("~/App/main")"></script>
I am having problems including the data-main attribute.
This is what I have tried:
@Html.Raw("<script type='text/javascript' src='~/App/durandal/amd/require.js' data-main="@Url.Content("~/App/main")"></script>");