请我在MVC网站上工作,我在索引页面上有一个搜索页面和另一个搜索表单。当我从索引页面单击搜索按钮时,我想调用相同的搜索页面控制器。下面是我的按钮在索引页面上的方式。
<span class="input-group-btn">
<button class="btn btn-info" type="button" id="addressSearch"
onclick="location.href='<%: @Url.Action("List", "Search") %>'">
Search</button></span>
列表是我的搜索搜索页面中的操作,搜索是控制器名称。当我点击上面的按钮时,它会以
的形式返回网址http://localhost:52050/&LT;%:%20 /搜索/列表%20%&GT;
显示错误的请求。我怀疑它来自我的路由,我不知道如何实现这一点,请帮助我们。
以下是我的路由
的方式 routes.MapRoute(
name: null,
url: "Page{page}",
defaults: new { Controller = "Search", action = "List" }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new
{
controller = "Home",
action = "Index",
id = UrlParameter.Optional
}
);
答案 0 :(得分:29)
如果您的视图引擎是 razor ,那么您正在混合使用 razor 和 aspx 语法:
<button class="btn btn-info" type="button" id="addressSearch"
onclick="location.href='@Url.Action("List", "Search")'">
答案 1 :(得分:8)
试试这个:
@Html.ActionLink("DisplayText", "Action", "Controller", route, attribute)
你的代码应该是,
@Html.ActionLink("Search", "List", "Search", new{@class="btn btn-info", @id="addressSearch"})