私はmvc 3のかみそりにこのコードを持っています
@using (Html.BeginForm("MyAction", "MyController"))
{
<input type="text" id="txt" name="txt"/>
<input type="image" src="image.gif" alt="" />
}
コントローラーには、このコードがあります
[HttpPost]
public ActionResult MyAction(string text)
{
//TODO something with text and return value...
}
今、新しい値を送信する方法、たとえば id をアクション結果に送信する??? ありがとう