Mvc提交

Controller

 [ValidateAntiForgeryToken]
 [HttpPost]
 public ActionResult Index(FormCollection focm)
 {
     string name = focm["Name"];
     ViewBag.Message = name;
     return View();
 }

View

<div>欢迎 @ViewBag.Message 先生</div>

@using (Html.BeginForm())
{
    @Html.AntiForgeryToken();
    @Html.Label("姓名:")
    @Html.TextBox("name");
    <input type="submit" value="确定" />
}
时间: 2024-10-14 05:08:02

Mvc提交的相关文章

ASP.NET MVC提交一个较复杂对象至WCF Service

前一篇<jQuery.Ajax()执行WCF Service的方法>http://www.cnblogs.com/insus/p/3727875.html 我们有练习在asp.net mvc应用程序中,POST 数据去wcf service并执行方法.本篇的练习是提交较复对象至wcf service执行方法.前一篇中,它只传递两个参数.如果我们平时开发,需要传递过多的参数时,那得需要写很多个参数.因此产生此篇,把较多个参数,创建为一个对象.然后只传递这个对象至wcf service即可. 下面

MVC提交时验证

第一种 @using (Html.BeginForm("ProdPromotionEdit", "Product", FormMethod.Post, new { onsubmit = "return check()" })) 第二种 <input onsubmit="return check() " type="submit"> 第三种jquery $("#xxxform"

Mvc 提交表单的4种方法全程详解

一,MVC  HtmlHelper方法 Html.BeginForm(actionName,controllerName,method,htmlAttributes){} BeginRouteForm 方法 (HtmlHelper, String, Object, FormMethod) 二,传统Form表单Aciton属性提交 三,Jquery+Ajax 提交表单 四,MVC Controller控制器和表单参数传递 MVC  HtmlHelper方法 一,Html.BeginForm(act

MVC 提交方法

MVC 使用Jquery实现AJax <script type="text/javascript"> function GetTime() { $.get("Home/GetTime", function (response) { $("#myPnl").html(response); }); return false; } </script> <div id="myPnl" style=&quo

asp.net mvc 提交model 接收不了

[HttpPost]        //[ValidateInput(false)]        public ActionResult AddNews1(_54Young_News_Model.model.gou54contentall contentmodel, _54Young_News_Model.model.gou54user usermodel)        {} 发现用一些特殊符号提交不了, 然后以为说前端问题,把model去掉就可以了. 后面觉得是因为有特殊符号影响到转mod

ASP.NET MVC提交到服务器的几种方法

多年不搞WEB开发了,最近有个小活干干,记录一下学习的心得. 以下为几种脚本向服务器提交的方法: 1. $.ajax({ type: "GET", url: "/TestRec/TaskConfig", data: { id: typevalue }, dataType:"html", success: function (evt) { $('#divEdit').html(evt); } }); 2. document.forms[0].act

ASP.NET MVC提交LIST列表到后台接收不到数据

兄跌 你看到这篇文章的时候已经找到答案了. 我在解决这个问题的端倪的时候已经浪费了我一个下午的休假时间.所以你应该给我一个赞!!! 不废话了上代码: Entity(Model) [Serializable] public partial class dictionarys { #region Model public string id { set; get; } /// <summary> /// /// </summary> public string parentID { s

Mvc 提交长字符串出现“从客户端(QuestionContent=&quot;&lt;p&gt;...&quot;)中检测到有潜在危险的 Request.QueryString 值。”

解决方法很简单,就是在后台表单接收处加上 [ValidateInput(false)] look like this : [ValidateInput(false)] /// <summary> /// 新增题库 /// </summary> /// <param name="qu"></param> /// <returns></returns> public ActionResult AddQues(Quest

spring mvc 提交表单汉字乱码

修改web.xml添加如下信息 <filter> <filter-name>characterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name>