ASP .NET Model
Model是全域性變數,一個頁面一個
前臺
@ModelWebApplication1.Models.Movie;
@{
ViewBag.Title = "ModelTest";
}
<h2>ModelTest</h2>
<label>@Model.ID</label>
<label>@Model.Name</label>
<label>@Model.Director</label>
後臺
public ActionResult ModelTest()
{
Movie movie=newMovie();
movie.Director = "haha";
movie.ID = "1";
movie.Name = "山有虎2333";
return View(movie); //這樣塞進去
}
相關文章
- ASP.NET Core MVC 之模型(Model)ASP.NETMVC模型
- 理解ASP.NET Core - 模型繫結&驗證(Model Binding and Validation)ASP.NET模型
- ASP.NET Core ----ASP.NET Core中使用Code FirstASP.NET
- ASP.NET 6.0 Core 遷移 ASP.NET Core 7.0ASP.NET
- ASP.Net 管道模型 VS Asp.Net Core 管道 總結ASP.NET模型
- ASP.NET MVC路由ASP.NETMVC路由
- ASP.NET之CookieASP.NETCookie
- Asp.net 使用FluentSchedulerASP.NET
- 【譯】在 ASP.NET 和 ASP.NET Core 之間共享程式碼ASP.NET
- 在ASP.NET Core中用HttpClient(六)——ASP.NET Core中使用HttpClientFactoryASP.NETHTTPclient
- .NET平臺系列25:從 ASP.NET 遷移到 ASP.NET Core 的技術指南ASP.NET
- ASP.NET Core初步使用Quartz.NETASP.NETquartz
- ASP.NET Core - 開篇ASP.NET
- ASP.NET MVC 反射例子ASP.NETMVC反射
- ASP.NET之JSONHelper操作ASP.NETJSON
- Asp.Net Core SwaggerUI 接入ASP.NETSwaggerUI
- Asp .Net Core 依賴注入依賴注入
- asp .net core 中介軟體
- asp.net core 整合JWTASP.NETJWT
- asp.net core 整合 PrometheusASP.NETPrometheus
- 【asp.net core 系列】 1 帶你瞭解一下asp.net coreASP.NET
- 【譯】ASP.NET Core updates in .NET 5 Preview 8ASP.NETView
- .NET 5 - 下一代ASP.NETASP.NET
- ASP.NET Core - .NET 6 的入口檔案ASP.NET
- ASP.NET Core 啟動(1)ASP.NET
- ASP.NET core 2.2 截圖ASP.NET
- ASP.NET SignalR增加Azure支援ASP.NETSignalR
- ASP.NET Core 中使用TypeScriptASP.NETTypeScript
- ASP.NET登入驗證ASP.NET
- asp.net core mvc 分頁ASP.NETMVC
- asp.net儲存圖片ASP.NET
- ASP.Net MVC過濾器ASP.NETMVC過濾器
- asp.net 8 Request,Response,ServerASP.NETServer
- asp.net core 系列之ConfigurationASP.NET
- ASP.NET Core 配置檔案ASP.NET
- asp.net core 系列之StartupASP.NET
- asp .net core Get raw request.
- ASP.Net LINQ to SQl查詢ASP.NETSQL
- ASP.NET MVC – 安全簡介ASP.NETMVC