zoukankan      html  css  js  c++  java
  • MVC 自动装配

    //HelloController.cs

    using FirstMVC.Models;

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;


    namespace FirstMVC.Controllers
    {
        public class HelloController : Controller
        {
            //
            // GET: /Hello/


            public ActionResult Index()
            {
                return View();
            }


            public ActionResult Say()
            {
                return Content("abc");
            }


            public ActionResult RedirectTest()
            {
                return Redirect(Url.Action("Index","Hello"));
            }


            public ActionResult JsonTest()
            {
                Person p = new Person()
                {
                    Age = 10,
                    QQ = "123"
                };
                return Json(p, JsonRequestBehavior.AllowGet);
            }


            public ActionResult Add()
            {
                ViewBag.id = Request["id"];
                return View();
            }
            [HttpPost]
            public ActionResult Add(int id)//自动装配
            {
                ViewBag.id2 = id;
                return View();
            }


            public ActionResult AddPerson()
            {
                return View();
            }
            [HttpPost]
            public ActionResult AddPerson(Person p)//自动装配
            {
                ViewData.Model = p;
                return View("AddPerson1");
            }
            


        }

    }


    //AddPerson.cshtml

    @model FirstMVC.Models.Person
    @{
        Layout = null;
    }


    <!DOCTYPE html>


    <html>
    <head>
        <meta name="viewport" content="width=device-width" />
        <title>AddPerson</title>
    </head>
    <body>
        <div>
            @using (Html.BeginForm("AddPerson", "Hello", FormMethod.Post))
            {
                <span>Age:</span>@Html.TextBoxFor(p => p.Age);<br />
                                 
                <span>QQ:</span>@Html.TextBoxFor(p => p.QQ); <br />
                                
                <input type="submit" name="name" value=" submit" />         
            }
        </div>
    </body>
    </html>

  • 相关阅读:
    权限管理
    书城项目第五阶段---book表的curd
    大话设计模式学习
    数据绑定流程分析
    GO 解决使用bee工具,报 bash: bee: command not found
    VScode插件:Todo Tree
    ant design pro如何实现分步表单时,返回上一步值依然被保存
    React开发流程
    为什么函数式组件没有生命周期?
    html2canvas@^1.0.0-rc.1
  • 原文地址:https://www.cnblogs.com/dxmfans/p/9434751.html
Copyright © 2011-2022 走看看