以下は私のビューページです。<form>
値を挿入するときにタグがないと、完全に挿入されます。しかし、挿入し<form>
ない値をタグで挿入すると、デバッグポイント[HttpGet]
は[HttpPost]
. 検証目的で、<form>
タグを挿入しました。しかし、それは役に立たないようです..解決策を教えてください....
@model CustMaster.Models.MyAccount
@using CustMaster.Models
@{
ViewBag.Title = "Customer Information";
}
<html>
<head>
<title>Customer Information</title>
<link href="../../style.css" rel="stylesheet">
</head>
<body>
<form action="" id="contact-form" class="form-horizontal">
@using (Html.BeginForm())
{
<table>
<tr>
<td><h3>User Information</h3></td>
</tr>
</table>
<table>
<tr>
<td>
<div class="control-group">
@Html.LabelFor(model => model.CustomerFirstName,
new { @class = "control-label" })
<div class="controls">
@Html.TextBoxFor(model => model.CustomerFirstName,
new { @class = "input-xlarge" })
</div>
</div>
</td>
<td>
<div class="control-group">
@Html.LabelFor(model => model.CustomerMiddleName,
new { @class = "control-label" })
<div class="controls">
@Html.TextBoxFor(model => model.CustomerMiddleName,
new { @class = "input-xlarge" })
</div>
</div>
</td>
</tr>
</table>
<button type="submit">Register</button>
}
@*</form>*@
<script type="text/javascript" src="../../assets/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="../../assets/js/jquery.validate.js"></script>
<script type="text/javascript" src="../../assets/js/jquery.validate.min.js"></script>
<script type="text/javascript" src="../../script.js"></script>
</body>
</html>
以下は私のコントローラーです
[HttpGet]
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(MyAccount myacc)
{
MyAccount ma = new MyAccount();
var objview = ma.GetCustInfo(myacc);
return View();
}