2012-03-28 59 views
1

大家好我有它與這些控件視圖如何從視圖中提交值?

<input type="text" class="radius2" /> 
<input type="button" value="Place bid" class="bid-btn" /> 

我想(通過操作方法)在文本框中的值傳遞給另一個觀點是單擊按鈕時。操作方法應呈現視圖。

這怎麼能達到?

感謝,

薩欽

回答

2
@using(Html.BeginForm("SubmitAction", "Home", FormMethod.Post)) 
{ 

    <input id="radius2" name="radius2" type="text" class="radius2" /> 
    <input type="submit" value="Place bid" class="bid-btn" /> 

} 
    [HttpPost] 
    public ActionResult SubmitAction(string radius2) 
    { 
     return AnotherView(radius2); 
    } 

    public ActionResult AnotherView(string value) 
    { 
     return View(); 
    } 

寫在記事本中,因此可能需要小的語法修改

1

名稱屬性添加到標籤,使服務器可以訪問它們

<input name="Name1" type="text" class="radius2" /> 
<input type="button" value="Place bid" class="bid-btn" /> 

那麼當提交你的行動應該是這樣的

public ActionResult SubmitAction(string name1) 
{ 
    return View("ViewName" , /* the model here */) 
} 
+0

我相信類型應該是「提交」 – 2012-03-28 16:31:14

相關問題