English 中文(简体)
在Mvc asp.net中获取选中复选框的值
原标题:
  • 时间:2009-01-22 11:24:09
  •  标签:

我在列表中显示了复选框,我想访问已选中的复选框,并想要调用控制器操作,其中我从下拉列表中选择选项。

<div id="pnlSent" style="display: none">
            <%= Html.DropDownList("select","msgtype") %>
            <% foreach (Usp_GetUserMessagesResult w in (List<Usp_GetUserMessagesResult>)ViewData["UListM"])
               { %>
                <li>
            <div class="question-info">

                <input id="Checkbox1" type="checkbox" onclick="function() { alert("df") ; } "  />

                <div class="views count"><span></span></div>
                <div class="question">
                    <div class="meta">Subject:  <%= w.Subject %></div>
                    <div class="meta">To: <%= w.Username  %></div>
                    <h3 class="title"><%= Html.Encode(w.Mesg)%></h3>
                </div>
            </div>
        </li>
            <% } %>

    </div>
问题回答

在asp.net-MVC中,你应该将你想在控制器端访问的信息以如下的形式放入表单中。我注意到你的复选框没有添加ID,我的是动态绑定的,我正在使用asp.net-mvc提供的HTML辅助工具。

   <% using(Html.BeginForm("Retrieve", "Home")) %>//Retrieve is the name of the action while Home is the name of the controller
   <% { %>
        <%foreach (var app in newApps)              { %>  
      <tr> 
           <td><%=Html.CheckBox(""+app.ApplicationId )%></td>      

       </tr>  
    <%} %>
   <input type"submit"/>
 <% } %>

然后在控制器上,您可以像这样访问信息:

   public ActionResult Retrieve()
   {
    //since all variables are dynamically bound you must load your DB into strings in a for loop as so:
  List<app>=newApps;
  for(int i=0; i<app.Count;i++)
  {


    var checkbox=Request.Form[""+app[i].ApplicationId];
    // the reason you check for false because the Html checkbox helper does some kind of freaky thing for value true: it makes the string read "true, false"
      if(checkbox!="false")
      {
      //etc...almost same for other parameters you want that are in thr form
      }

   }
//of course return your view
return View("Index");//this vaires by the name of your view ex: if Index.aspx
  }

This site gives more details on how to check information on the controller as controls are handled in the view: http://quickstarts.asp.net/previews/mvc/mvc_HowToRenderFormUsingHtmlHelpers.htm

如果您打算提交此表单,并在服务器端执行任何复选框值的操作,您需要给它们指定namevalue属性(每个组中的复选框名称应相同)。TStamper提到的复选框帮助程序会自动为您处理这些属性。

如果您只想要在复选框被选中或取消选中时执行客户端操作,您可以像这样做(我假设这些对象都有某种关键字段;我称之为MessageID):

<script type="text/javascript">
function handleCheckbox( theBox ) {
  if( theBox.checked) {
    // do checked stuff
  }
  else {
    // do un-checked stuff
  }
}
</script>

...

<input type="checkbox" value="<%= w.MessageID %>" onclick="handleCheckbox(this)"  />

请注意,在HTML文档中,id值必须是唯一的。因此,创建很多ID为“Checkbox1”的复选框并不是一个好主意。(如果该输入元素是runat =“server”,则.NET将从WebForms ID生成唯一的HTML id

你可以遍历div pnlsent上的所有控件,如果控件类型是复选框,则可以确定复选框是否被选中。

VB中控制循环的示例。

 For Each ctrl As Control In Page.Controls
        If TypeOf ctrl Is TextBox Then
            CType(ctrl, TextBox).BackColor = clr
        Else
            If ctrl.Controls.Count > 0 Then
                SetTextBoxBackColor(ctrl, clr)
            End If
        End If
    Next




相关问题
热门标签