Migrating my MVC3 (aspx) project to MVC5 (razor), I use:
<% if ((bool)this.ViewData["ReadOnly"] != true)
{ %>
document.getElementById("NextAction").value = nextAction;
document.getElementById("VisitForm").submit();
<% } else { %>
window.location = nextAction;
<% } %>
I modified it to:
@if ((bool)this.ViewData["ReadOnly"] != true)
{
document.getElementById("NextAction").value = nextAction;
document.getElementById("VisitForm").submit();
} else {
window.location = nextAction;
}
Can not resolve either document or window?
Migrating my MVC3 (aspx) project to MVC5 (razor), I use:
<% if ((bool)this.ViewData["ReadOnly"] != true)
{ %>
document.getElementById("NextAction").value = nextAction;
document.getElementById("VisitForm").submit();
<% } else { %>
window.location = nextAction;
<% } %>
I modified it to:
@if ((bool)this.ViewData["ReadOnly"] != true)
{
document.getElementById("NextAction").value = nextAction;
document.getElementById("VisitForm").submit();
} else {
window.location = nextAction;
}
Can not resolve either document or window?
Share Improve this question asked Nov 3, 2014 at 18:10 hnclhncl 2,3057 gold badges63 silver badges132 bronze badges2 Answers
Reset to default 5You are missing script tags. Like so:
@if ((bool)this.ViewData["ReadOnly"] != true)
{
<script>
document.getElementById("NextAction").value = nextAction;
document.getElementById("VisitForm").submit();
</script>
}
else
{
<script>
window.location = nextAction;
</script>
}
MVC uses HTML tags to enter/exit parsing of the template automatically. In your previous version you were fully wrapped in <% %>
tags to identify when server side parsing should be active. Razor syntax doesn't rely on that specifically anymore, but instead will exit server side parsing when it encounters an HTML tag and re-enters it when it encounters the closing version of the tag. Try wrapping your JavaScript inside <text>
tags to identify for the template parser that raw "HTML" is ing:
@if ((bool)this.ViewData["ReadOnly"] != true)
{
<text>
document.getElementById("NextAction").value = nextAction;
document.getElementById("VisitForm").submit();
</text>
} else {
<text>
window.location = nextAction;
</text>
}