1
hi 我在我的控制器中有一個actionresult索引方法,而對於同一個名稱有一個http post方法。當我運行程序時,控件應該轉到http post方法,但默認情況下它會轉到索引方法。將按鈕控制傳遞給http post方法
public ActionResult Index()
{
//code goes here
}
[HttpPost]
public ActionResult Index(FormCollection form)
{
}
有人可以告訴我該怎麼做嗎?
請您從您的視圖/形式提供一些代碼呢? – 2011-03-29 13:29:01