代码之家  ›  专栏  ›  技术社区  ›  Raja

MVC2-两个单选按钮组保持状态

  •  1
  • Raja  · 技术社区  · 14 年前

    我在局部视图中有两个单选按钮组,根据其中两个的选择,我必须操作一个“扩展区域(div)”。要求将单选按钮组默认为第一个,并显示与其相关的扩展区域。问题是当出现验证错误时,我无法持久化单选按钮组。因为我在客户端处理它,所以它变为默认值。任何关于如何解决它的想法将不胜感激。

    谢谢,

    1 回复  |  直到 14 年前
        1
  •  1
  •   Siva Gopal    14 年前

    您是使用MVC的ValidationMessage助手验证客户端还是在控制器中验证客户端?如果您发布页面并使用模型状态.IsValid在控制器上,确保返回具有相同实体的视图。

    是否将默认单选按钮设置为on文件准备就绪(…)或使用JQuery/Javascript在客户端加载(…)?否则,我已经测试了以下内容,它工作正常,单选按钮状态保持不变:

     public class MyModel
        {
            [Required(ErrorMessage="Name is required")]
            public string Name { get; set; }
            public bool IsSelected { get; set; }
        }
    

    查看:

    <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<TestSample.Models.MyModel>" %>
    
    <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
        Home Page
    </asp:Content>
    
    <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <%Html.BeginForm(); %>
    <%Html.EnableClientValidation(); %>
            <p>
            <%=Html.RadioButtonFor(m=>m.IsSelected,"true") %>
            <%=Html.RadioButtonFor(m=>m.IsSelected,"false") %>
            <%=Html.TextBoxFor(m => m.Name) %>
            <%=Html.ValidationMessageFor(m => m.Name, "Required") %>
            <input type="submit" id="btnSubmit" name="name" value="Submit" />
            </p>
    <%Html.EndForm(); %>
        <script src="../../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
          </asp:Content>
    

    [HttpPost]
    public ActionResult Index(MyModel model)
      {
           if (ModelState.IsValid)
           {//Your code goes here }
           return View(model);
      }