asp.net-mvc-3 – ActionButton而不是ActionLink

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – ActionButton而不是ActionLink前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个按钮,当单击时调用一个动作。我使用Html.ActionLink创建一个链接,但是没有Html.ActionButton。还有其他一些方法吗?

解决方法

Is there some other way?

你可以使用html< form&gt ;::

@using (Html.BeginForm("someAction","someController"))
{
    <button type="submit">OK</button>
}
原文链接:https://www.f2er.com/aspnet/253233.html

猜你在找的asp.Net相关文章