后台取值+跳转

Posted jsll

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后台取值+跳转相关的知识,希望对你有一定的参考价值。

 public ActionResult Login(string name, string pwd)//传进来的字符串实际没用上
        {
            //取值
            //至少有3种方法能够拿到前台Form表单submit提交过来的数据,必要条件:<input type="text" name="name"/>;;其中name是必要的
            //第一种:
            var name1 = Request["name"]; 或 +.ToString()
            //第二种::前提要Login( string name )
            var name2 = name;
            //第三种;
            var name3 = Request.Form[0];

            return View("Index");
            //跳转
            //转到当前Controller下action,,可以写 return RedirectToAction("Index");或 return RedirectToAction("Login");!!!!!!!!!!!!!!!!!!!!!!!!!!!
            //return RedirectToAction("Index");
            //转到Select_Controller下Index-action,
            //另一种跳转:路由跳转:
            //return RedirectToRoute(new { controller = "Home", action = "Index" });
            }

以上是关于后台取值+跳转的主要内容,如果未能解决你的问题,请参考以下文章

替换或删除后台堆栈上现有片段的代码不起作用

单页应用及多页应用

asp.net通过后台代码给前台设置css样式,下拉列表在js中的取值

AngularJS实现地址栏取值

怎么在html中写PHP代码,前台页面从后台数据库中取值,

在后台堆栈中多次防止相同的片段