2
我可以寫形式是這樣的內容:一次性Ajax.ActionLink像Ajax.BeginForm
@using(Ajax.BeginForm(...)){
// html content here
}
呈現爲:
<form>
// html content here
</form>
是否有可能與Ajax.ActionLink做的一樣嗎?
@using(Ajax.ActionLink(...)){
// html content here
}
渲染:
<a>
// html content here
</a>