@using RTSafe.Platform.ManagerCenterModules.ProjectModules.Models@using RTSafe.Platform.ManagerCenter.Core.Models;@{ ViewBag.Title = "index"; Layout = ...
分类:
Web程序 时间:
2017-06-26 15:37:34
阅读次数:
684
为解决上篇最后的问题,调用刚开始的Model实体类Admin,创建控制器生成视图和数据库。 在控制器添加如下代码: [AllowAnonymous] public ActionResult Login(string returnUrl) { ViewBag.ReturnUrl = returnUrl ...
分类:
其他好文 时间:
2017-06-24 19:52:01
阅读次数:
171
1.通过Volleyballs控制器自动生成的视图代码,在这里就不做代码演示了。 不过,自动生成的代码文字有些需要对其进行修改,才能达到想表达的意思。 2.下面的是创建比赛记录的代码: index.cshtml: @model 排球助手.Models.VolleyballDB@{ ViewBag.T ...
分类:
其他好文 时间:
2017-06-24 13:51:50
阅读次数:
233
//根据条件查找数据 list = Stdqj.FindAll(where, "ID desc", "", (pageindex - 1) * 15, 15); // 根据list查找的条件,查找list的总数(count) ViewBag.total = Stdqj.FindCount(where... ...
分类:
编程语言 时间:
2017-06-21 13:43:16
阅读次数:
165
1.ViewData:C传递数据到V中:ViewData["studentList"]=studentList; V接收C传来的数据:var stu=(Student)ViewData["studentList"]; 2.ViewBag:C >V:ViewBag._product=p; 接收:var ...
分类:
Web程序 时间:
2017-06-09 00:52:55
阅读次数:
205
方式:1使用弱类型取,2,使用强类型,两者的差别在于view页面最上方声明的方式 如果使用弱类型接受来自控制器的数据,在view页面里完全不需要有任何的生命,数据可以从ViewData,ViewBag,TempData取得,在页面中可以通过@Model属性, 取得从Action传来的ViewData ...
分类:
Web程序 时间:
2017-06-03 16:19:49
阅读次数:
168
一、公共模板 1、@RenderBody() 在网站公用部分通过一个占位符@RenderBody()来为网站独立部分预留一个位置。然后私有页面顶部通过@{Layout="公用模板路径"}来引入公用模板,并在自身放到公用模板的位置。同时也可以设置ViewData或ViewBag设置网站标题,关键词等信 ...
分类:
Web程序 时间:
2017-05-19 11:10:16
阅读次数:
335
一、Core MVC中控制器和视图之间传值方式和Asp.Net中非常类似 1.弱类型数据:ViewData,ViewBag 2.强类型数据:@model 二、代码 实例 1.ViewData 2.ViewBag 3.@model 更多: .NetCore中EFCore的使用整理 VS Code搭建. ...
分类:
Web程序 时间:
2017-05-17 00:39:38
阅读次数:
1004
1 @model Lixise.HealthCloud.ServiceOrder.Models.ServiceOrderEdit 2 @using Lixise.HealthCloud.ServiceOrder.Utils 3 @{ 4 ViewBag.Title = "Create"; 5 Lay ...
分类:
Web程序 时间:
2017-05-16 13:08:44
阅读次数:
286
@model Lixise.HealthCloud.ServiceOrder.Models.ServiceOrderEdit @using Lixise.HealthCloud.ServiceOrder.Utils @{ ViewBag.Title = "CreateOrder"; } <style ...
分类:
Web程序 时间:
2017-05-16 12:53:10
阅读次数:
245