2016-02-03 38 views
0

我一直想一個動作附加到我的引導提交按鈕,看起來像這樣:如何使用引導程序提交按鈕進行重定向?

@Html.Bootstrap().SubmitButton().Style(ButtonStyle.Primary).Text("Save").HtmlAttributes("@Url.Action('Action','Controller')") 

但它不會工作,我一直試圖找到一個解決方案,但沒有發現任何...

那麼如何創建提交表單並直接重定向後綴的提交按鈕?

感謝您的答案:)

+1

使用返回RedirectToAction來提交表單 –

回答

1

你應該在你的控制器中的POST之後重定向或GET方法完成一切,就像這樣:

public ActionResult DeletePerson(int personId) 
    { 
     //do your deleting stuff here 

     return RedirectToAction("Index"); //<-- send me to the index action method 
    } 

這將去Index操作方法這大概會最終返回索引視圖。

+0

對不起,我發現我做的錯誤,我使用引導表單和我forgott聲明在開始表單行來定義我的行動.. 。但現在我可以完美地使用RedirectToAction。謝謝 :) – ROCKST4R

相關問題