我可以写表格,内容如下:
@using(Ajax.BeginForm(...)){
// html content here
}
呈现为:
<form>
// html content here
</form>
是否可以对Ajax.ActionLink执行相同操作?
@using(Ajax.ActionLink(...)){
// html content here
}
渲染:
<a>
// html content here
</a>
答案 0 :(得分:2)
不,你不能,Ajax.ActionLink返回MvcHtmlString,这不是一次性的。
您可以自己创建链接,如此extension method example。