gpt4 book ai didi

ASP.NET MVC : Display a link to another action

转载 作者:行者123 更新时间:2023-12-02 17:03:19 25 4
gpt4 key购买 nike

@Html.ActionLink("Add a bill", "Create", new { controller = "Bill"});

这是我用来添加指向 Bill Controller 中的 Create 方法的链接的代码。

但在我看到的景色

Add a bill (/Bill/Create):

那么,如何去掉括号呢? (/比尔/创建)。

而且,我还希望此链接充当按钮而不是 ,我该怎么做?感谢您的帮助。

最佳答案

你说的括号很奇怪。假设默认路由:

@Html.ActionLink("Add a bill", "Create", new { controller = "Bill" })

和:

@Html.ActionLink("Add a bill", "Create", "Bill")

是等效的并且应该生成以下标记:

<a href="/Bill/Create">Add a bill</a>

就您有关按钮的问题而言,您可以使用表单:

@using (Html.BeginForm("Create", "Bill"))
{
<input type="submit" value="Add a bill" />
}

关于ASP.NET MVC : Display a link to another action,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4770826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com