这是我的观点
@{ Html.BeginForm("Index");
<fieldset>
<legend>emp</legend>
<div class="display-label">name</div>
<div class="display-field">
<!-- @Html.DisplayFor(model => model.name) -->
@Html.DropDownList("gett","--SELECT--")
</div>
<div class="display-label">address</div>
<div class="display-field">
@Html.DropDownList("address","--SELECT--")
</div>
</fieldset>
<p>
<input type="submit" value="submit" />
@Html.ActionLink("Back to List", "Index")
</p>
}
我想将此视图的信息发送到家庭控制器的“索引”操作。但是,我无法通过单击“提交”按钮访问“索引”。每当我提交提交按钮时,不执行任何操作。请检查我的代码。并建议我应该添加什么来转发我在下拉列表索引中选择的值。
答案 0 :(得分:0)
您的语法不正确
http://msdn.microsoft.com/en-us/library/system.web.mvc.html.mvcform.aspx
您应该使用
using (Html.BeginForm("Index")) {
这假设您要使用当前控制器索引方法,否则您还需要指定控制器名称
using (Html.BeginForm("Index", "WhateverControllerName")) { }
因为你在使用stmt时没有html.beginform,所以我认为你的结尾表单标签没有被渲染。