私は mvc を初めて使用します。テキストボックスのテキストを mvc の別の変数に割り当てる方法を知りたいです。
ウィンドウでは、 textbox1.text = var body; を使用できます。
以下のコードを使用して同様のことを行うにはどうすればよいですか
PAF コントローラの文字列 postcode のパラメータを呼び出すように textboxfor にテキストを書き込みたい Index アクション?
@Html.TextBoxFor(model => model.PostCode)
**Here we will get : postcode: ------------(Assume Postcode:52345)**
<input type="button" name="postcode" value="check your address" onclick="location.href='@Url.Action("Index", "PAF", new {Postcode = ...... )})'" />
**Here we will get : check your address button**
これが私のPAFコントローラーのインデックスアクションです
public class PAFController : Controller
{
public ActionResult Index(string Postcode)
{
return View();
}
}