问题描述
<tr><th>所属上司:</th><td><select>@foreach(varinfoinliss){<option@(info.Boss==entity.Boss?"selected=selected":"")value="@info.Boss">@info.BossName</option>}</select></td></tr><tr><th>是否为管理员:</th><td><selectname="IsAdmin"><optionvalue="0")@(0==entity.IsAdmin?"selected=selected":"")>否</option><optionvalue="1"@(1==entity.IsAdmin?"selected=selected":"")>是</option></select></td></tr><tr><th>状态:</th><td><inputtype="radio"name="IsActive"@(1==entity.IsActive?"checked=checked":"")class="radio_style"value="1"checked="checked"/> 有效 <inputtype="radio"name="IsActive"@(0==entity.IsActive?"checked=checked":"")class="radio_style"value="0"/> 禁用</td></tr><tr><th>是否在职:</th><td><selectname="IsDuty"><optionvalue="1"@(1==entity.IsDuty?"selected=selected":"")>在职</option><optionvalue="2"@(0==entity.IsDuty?"selected=selected":"")>离职</option></select></td></tr></table><inputtype="submit"name="dosubmit"id="dosubmit"class="dialog"value=""/></form>
解决方案
解决方案二:
后台接受的action也发上来
解决方案三:
后台的ActionResult返回的实体类对象是空值。
解决方案四:
后台的model对象和前台控件的name对应不上,或者mode对象的属性不一样