首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

MVC submit 验证是不是为空 以及提交

2013-10-24 
MVCsubmit 验证是否为空 以及提交 input typesubmit nameButton1 value受 理 onclickreturn c

MVC submit 验证是否为空 以及提交


 <input type="submit" name="Button1" value="受 理" onclick="return checkform();" id="Button1" class="input_btn" />
   //验证表单
   function checkform() {
  var isSucc = false;
  jQuery.checkForm({
      ctrls: [{ id: "DdlCaseSq", type: "mustSelect", par: "-1", msg: "社区不能为空" },
      { id: "DdlCaseWg", type: "mustSelect", par: "-1", msg: "网格不能为空" },
      { id: "TbHappenTime", type: "mustDate", par: "", msg: "事发时间不能为空" },
      { id: "DdlLy", type: "mustSelect", par: "-1", msg: "事发来源不能为空" },
      { id: "DdlDegree", type: "mustSelect", par: "-1", msg: "事件等级不能为空" },
      { id: "DdDx", type: "mustSelect", par: "-1", msg: "事件类别不能为空" },
      { id: "DdXx", type: "mustSelect", par: "-1", msg: "事件大类不能为空" },
      { id: "DdlXl", type: "mustSelect", par: "-1", msg: "事件小类不能为空" },
      { id: "TbBt", type: "mustInput", par: "", msg: "事件标题不能为空" },
      { id: "TbContent", type: "mustInput", par: "", msg: "事件内容不能为空" }
     ],
         success: function () {
              //提交成功提示:
                    isSucc = true;
                  },
                  failed: function (msg) {
                                //提交失败提示:
                                alert(msg);
                                isSucc = false;
                            }
                        });
                        return isSucc;
                    }      

如果符合条件,就进行提交。如果不符合就不进行提交。
现在问题是当我满足条件之后,怎么将数据提交到Controllers里面。
Controllers 怎么进行接收。
请各位大侠为小弟我解答。谢谢各位大侠了
[解决办法]
你表单提交到什么地方就在什么地方接收呀?不可以吗?
[解决办法]
  <% using (Html.BeginForm("CreateITRequest", "IT_Request", FormMethod.Post, new { id = "form1", name = "form1" }))
           {%>

热点排行