html 表单控制器,c# – html表单发布到mvc控制器

将Html发布到MVC控制器

>使用表单创建HTML页面(不要忘记引用Jquery.js)

User Name

Password

$(document).ready(function () {

//get button by ID

$('#btn1').submit(function () {

//call a function with parameters

$.ajax({

url: 'rec/recieveData', //(rec)= Controller's-name

//(recieveData) = Action's method name

type: 'POST',

timeout: '12000', (optional 12 seconds)

datatype: 'text',

data: {

//Get the input from Document Object Model

//by their ID

username: myform.username.value,

password: myform.password.value,

}

});

});

});

然后在MVC控制器中

controller/action

| |

1.创建名为rec的rec(rec / recieveData)

>创建名为rec.cshtml的视图

这是控制器:

public class recController : Controller

{

// GET: rec

string firstname = "";

string lastname = "";

List myList = new List();

public ActionResult recieveData(FormCollection fc)

{

//Recieve a posted form's values from parameter fc

firstname = fc[0].ToString(); //user

lastname = fc[1].ToString(); //pass

//optional: add these values to List

myList.Add(firstname);

myList.Add(lastname);

//Importan:

//These 2 values will be return with the below view

//using ViewData[""]object...

ViewData["Username"] = myList[0];

ViewData["Password"] = myList[1];

//let's Invoke view named rec.cshtml

// Optionaly we will pass myList to the view

// as object-model parameter, it will still work without it thought

return View("rec",myList);

}

}

这是视图:

@{

ViewBag.Title = "rec";

}

Hello from server

@ViewData["Username"]

@ViewData["Password"]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值