mvc表单Form提交 --实体

1、方式1:字段加验证

  • @model MvcWeb.Models.UserInfo
  • @{
  • ViewBag.Title = "Add";
  • }
  • <h2>Add</h2>
  • @using (Html.BeginForm())
  • {
  • @Html.ValidationSummary(true)
  • @Html.HiddenFor(model => model.Id)
  • <div class="editor-label">
  • @Html.LabelFor(model => model.UserName)
  • </div>
  • <div class="editor-field">
  • @Html.EditorFor(model => model.UserName)
  • @Html.ValidationMessageFor(model => model.UserName)
  • </div>
  • <p>
  • <input type="submit" value="Save" />
  • </p>
  • }
  • ==============================================
  • 2、方式2
  • @{
  • ViewBag.Title = "Add";
  • }
  • <h2>Add</h2>
  • @using (Html.BeginForm("Add", "UserInfo", FormMethod.Post)) //方法名称,控制器名称
  • {
  • <table>
  • <tr>
  • <td>
  • 用户名称:
  • </td>
  • <td>
  • @Html.TextBox("txtUserName")
  • </td>
  • </tr>
  • <tr>
  • <td>
  • 密码:
  • </td>
  • <td>
  • @Html.TextBox("txtPassword", ViewData["url"])
  • </td>
  • </tr>
  • <tr>
  • <td>
  • <input id="Submit1" type="submit" value="submit" />
  • </td>
  • <td>
  • <input id="Reset1" type="reset" value="reset" />
  • </td>
  • </tr>
  • </table>
  • }

----------------------

<%using (Html.BeginForm("Create", "Book")) { %>
        <div>

//这里是你要提交的表单信息
        <div>
            <input type="submit" id="submit" name="submit" value="搜索" />
        </div>
        <%} %>

如果html表单中不使用@Html控件,直接写html控件,那么控制器中,要通过 FormCollection form: form["txtAccount"];  取值

public ActionResult UserRegister(FormCollection form)         {             RegisterModel reg = new RegisterModel();             reg.Account = form["txtAccount"];             if (form["txtAccount"]!="huika123")             {

}             return View();         }

时间: 2024-10-05 03:12:30

mvc表单Form提交 --实体的相关文章

asp.net MVC中控制器获取表单form提交的数据之实体类数据

第一次写记录文章,难免有不足之处:欢迎指出. 1.新建一个mvc项目如: 2.新建一个Test.cs 注意get,set方法不能简写 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 using System; using System.Collections.Generic; using System.Linq; usi

spring mvc表单修改提交

实际应用中,列表中的单条记录的修改,可能需要传很多对象参数到后台服务器,Spring MVC表单标签<form:> 提供了一种简洁的提交方式. 1 <form id="form1" class="form-horizontal chukong_form" method="post" 2 action="${ctx}/channel/sdkversion/postedit.do"> 3 <form:

spring mvc表单form值自动传到javabean-注解@ModelAttribute

直接通过Form Bean进行表单可以简化表单提交的处理,特别是对于复杂表单,过于简单的表单就不建议了,因为毕竟需要额外创建一个Form Bean. 前段时间项目中有一个比较复杂的表单,有多层次而且涉及数组,如果不采用Form Bean的处理方式会比较麻烦,但多层而且是数组,之前一直没有找到如何通过Form Bean方式进行处理,但相信Spring MVC应该可以做到,因为Spring的强大之处就是IOC嘛,所以在网上查阅资料,并不断尝试后终于解决,现在不管是多么复杂的表单均可以通过Form B

asp.net mvc表单异步提交

html代码: @using (Html.BeginForm("xx", "xx", FormMethod.Post, new { enctype = "multipart/form-data", id = "form1", @class = "form-horizontal", role = "form" })){ <div> @Html.DropDownList(&quo

spring mvc表单自动装入实体对象

<form action="/springmvc1/user/add" method="post"> id: <input type="text" name="id"><br> 姓名:<input type="text" name="name"/><br> 密码:<input type="text" n

Spring MVC表单提交

实际应用中,列表中的单条记录的修改,可能需要传很多对象参数到后台服务器,Spring MVC表单标签<form:> 提供了一种简洁的提交方式. 1 <form id="form1" class="form-horizontal chukong_form" method="post" action="${ctx}/channel/sdkversion/postedit.do"> 3 <form:hi

Spring MVC与表单日期提交的问题

Spring MVC与表单日期提交的问题 spring mvc 本身并不提供日期类型的解析器,需要手工绑定, 否则会出现非法参数异常. org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [java.util.Date]: Constructor threw exception; nested exception is java.lang.IllegalArgumentExc

表单 - Form - EasyUI提供的表单异步提交

方案一 被提交的表单 <form id="loginForm" method="post"> <table align="center"> <tr> <th align="right">用户名</th> <td> <input type="text" name="username"/> </td&g

ASP.NET MVC 表单的几种提交方式

下面是总结一下在ASP.NET MVC中表单的几种提交方式. 1.Ajax提交表单 需要引用 <script type="text/javascript" src="/Scripts/jquery-1.7.2.min.js"></script>    <script src="/Scripts/jquery.validate.min.js" type="text/javascript">&l