我想创建一个按钮,当单击时
调用一个动作。我使用Html.ActionLink创建一个
链接,但是没有Html.ActionButton。还有其他一些
方法吗?
Is there some other way?
你可以使用html< form> ;::
@using (Html.BeginForm("someAction","someController"))
{
<button type="submit">OK</button>
}
原文链接:https://www.f2er.com/aspnet/253233.html