MVC 4,HTML输入标签抛出“未终止字符串常量”

时间:2012-10-30 11:49:59

标签: html razor syntax-error

嗨,每当我尝试在html中创建一个按钮时,我都会收到此错误。 错误:“未终止的字符串常量” 这是代码:

<input id="topImageNavigationPreviousButton" type="button" value="Previous" class="inline" onclick="location.href='@Url.Action("Index", "Home", new { id = (id + (startIndex - endIndex) + 1) })'"/>

我正在使用MVC 4 Razor。 如果您希望我发布更多代码,请告诉我:)

(PS:有人可以告诉我如何对该代码进行换行吗?试过<br/>

1 个答案:

答案 0 :(得分:0)

未终止的字符串常量是因为缺少一个右引号。确定你在语法中犯了一些错误。

onclick="location.href='@Url.Action("Index", "Home", new { id = (id + (startIndex - endIndex) + 1) })'"