如何在ASP.Net MVC中执行JavaScript重定向?
作者:互联网
以下代码将生成一个指向我要访问的页面的链接.
<%= Html.ActionLink(image.Title, image.Id.ToString(), "Image") %>
以下代码将导致在页面上呈现正确的URL.
<%= Url.Action("Index", "Image", new { id = image.Id })%>
但是,当我尝试在javascript中使用它时会失败. (关于页面继承有一些奇怪的错误)
<div onclick="window.location = '<%= Url.Action("Index", "Image", new { id = image.Id })%>'">
...
</div>
上面的代码应该工作吗?生成上面尝试过的javascript的正确方法是什么?
更新我得到的错误是
Views\Home\Index.aspx.cs(9): error
ASPNET: Make sure that the class
defined in this code file matches the
‘inherits’ attribute, and that it
extends the correct base class (e.g.
Page or UserControl).
看起来这表明存在更大的问题.
修复感谢您的帮助,代码中包含带有runat =“ server”的div.当我删除它时,它运行正常.这可能是因为没有带有runat =“ server”的表单,但是我希望与此不同.
由于这个问题似乎没有意义,我应该删除它吗?
解决方法:
这应该实际工作. ASP.NET MVC将替换所有<%= ...%>或类似的标记,则无法识别它是html定义还是javascript.您的视图输出是什么? “奇怪的错误”是来自Javascript还是ASP.NET?
编辑:关于您的更新:确保您的Index.aspx具有指向Code.aspx.cs的“ Codebehind”属性(在第一行的Page-tag中),并且属性“ Inherits”包含该类的名称.页面/用户控件类在后面的代码中.
标签:javascript,asp-net-mvc 来源: https://codeday.me/bug/20191210/2103852.html