HTML5技术

【ASP.NET MVC】View与Controller之间传递数据 - Alan_beijing(5)

字号+ 作者:H5之家 来源:H5之家 2017-09-10 08:02 我要评论( )

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; MVCCrud.Areas.JqGridDemo.Controllers 8 { QueryStringController : Controller 10 { A

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; MVCCrud.Areas.JqGridDemo.Controllers 8 { QueryStringController : Controller 10 { ActionResult Index() 13 { 14 return View(); 15 } GetParamsFromToView(string EmployeeID,string EmployeeName) 18 { ].ToString(); ].ToString(); 21 } 22 } 23 }

View:

1 @{ 2 Layout = null; 3 } Index () { () { ; 17 }); 18 }); QueryString向Controller传递值

result:

3.2  AJax

controller:

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; MVCCrud.Areas.JqGridDemo.Controllers 8 { AjaxDataController : Controller 10 { ActionResult Index() 13 { 14 return View(); 15 } GetParamsFromAjax(string EmployeeID, string EmployeeName) 19 { 20 21 } 22 } 23 }

View:

1 @{ 2 Layout = null; 3 } Index () { () { 15 $.ajax({ , , }, (message) { ); 21 } 22 }); 23 }) 24 }) Ajax传递参数

或者

1 @{ 2 Layout = null; 3 } Index () { () { 15 $.ajax({ , , (message) { ); 21 } 22 }); 23 }) 24 }) Ajax传递参数

result:

3.3  Form传递

controller:

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; MVCCrud.Areas.JqGridDemo.Controllers 8 { FormTransferDataController : Controller 10 { ActionResult Index() 13 { 14 return View(); 15 } GetParamsFromForm(string EmployeeID, string EmployeeName) 19 { 20 21 } 22 } 23 }

View:

1 @{ 2 Layout = null; 3 } Index员工ID:员工姓名:

result:

3.4  FormCollection

controller:

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; MVCCrud.Areas.JqGridDemo.Controllers 8 { FormCollectionTransferDataController : Controller 10 { ActionResult Index() 13 { 14 return View(); 15 } GetParamsFromFormCollection(FormCollection fc) 19 { ].ToString(); ].ToString(); 22 } 23 } 24 }

view:

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • ASP.NET Core MVC – Tag Helper 组件 - Sweet-Tang

    ASP.NET Core MVC – Tag Helper 组件 - Sweet-Tang

    2017-09-01 17:02

  • ASP.NET Core 使用Cookie验证身份 - Sweet-Tang

    ASP.NET Core 使用Cookie验证身份 - Sweet-Tang

    2017-08-24 17:00

  • 权限管理学习 一、ASP.NET Forms身份认证 - 农码一生

    权限管理学习 一、ASP.NET Forms身份认证 - 农码一生

    2017-08-01 11:02

  • ASP.NET MVC5 怒跨 Linux 平台 - Mr.Tua

    ASP.NET MVC5 怒跨 Linux 平台 - Mr.Tua

    2017-07-26 14:01

网友点评