ASP.NET-MVC5
2016-05-20
简介
- 本教程基于微软ASP.NET-MVC5官方文档修订而成。
- 文中将VS版本从官方文档的VS2013修改为2015,并且增加了基础内容,缩减了高级部分,形成简明版本,以便入门。
MVC框架的演变
- MVC1-MV4的演变可以参考如下:
- MVC5是针对之前版本的一个集大成者,几乎完美,只是不推荐跨平台。
- MVC6是一个颠覆版本,构建于ASP.NET5之上,为跨平台而生。
Pre-Requirement
- Visual Studio 2015
- ASP.NET 4.6.1
- IIS 7.5+
Source Code
- 本文中的示例代码托管在:Github
Quick Start
Create a New MVC Project
- 创建一个新的MVC工程
- 项目创建成功后
- 按F5会开始Debug,VS会直接以Attach的方式启动IISExpress
- 按Ctrl + F5,不debug,此时可以修改源代码,编译后刷新Browser页面可以应用新代码
Setting IISExpress
- Debug时,IISExpress会自动运行,我们可以通过IISExpress的配置界面来配置它。
- 还可以通过VisualStudio的快捷键:Ctrl + Alt + P 来Attach到指定的进程进行代码调试
Router
Add Router
- 为MVC项目添加路由的步骤如下:
- 在VS中按F12,可以进入定义位置
- 上图中,url表示了Route的样式:
- 默认的Controller是Home
- 对所有的Controller,默认的Action都是Index
- id是可选的
Controller
Add Controller
- 添加Controller
QureyString
- QueryString字符串会自动传给Action方法对应的形参
- 我们可以在Action方法中指定默认参数
- 这里的HttpUtility.HtmlEncode 也可以写成 Server.HtmlEncode,Server是HttpUtility的一个实现
Validate Request
- 如果我们输入可能造成注入攻击的内容,可以看到页面报错,这个Request Validation机制和HtmlEncode无关,是在MiddleWare层做掉的。
- 如果要屏蔽此报错,可以参考MSDN,请注意:
- 针对WebForm / MVC / Web Pages有不同的改法
- 该步骤适用于.NET 4.5及以上版本
Encode HTML
- 如果不使用HTMLEncode,虽然RequestValidation可以通过,但我们依然无法把HtmlTag等字符注入到页面中。
- 使用HTMLEncode之后,就可以了
View
Add View
- 添加View
- 、
Template-CSHTML
- Control通过View()方法关联到CSHTML
- CSHTML可以直接浏览
- View Layout
Controller & View
- 如果View()对应的模板文件不存在,会报错
- 如何将Controller中的变量传递给View?
Model
Add Movie Model
- Create Model Class
- 编写Model & DBContext
- 可以去掉无用的引用
- 在Web.config中添加Web.config
Add Movie Controller
- Add Controller
- 现在我们就可以通过WebPage操作Movie模型了
LocalDB
- 我们可以查看AppData里的本地数据库文件
- 在Server Explorer里可以打开MovieDBContext
- 点击左边的小三角,会自动连接上
- 然后可以查看表结构和查询数据
Publish
User Profile
-
SQL Express需要Load一个user profile,但IIS7.5默认是不会Load User Profile的。所以部署到IIS(IIS7.5,2008R2)后,LocalDB不能被直接支持,会报错:
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 50 – Local Database Runtime error occurred. Cannot create an automatic instance. See the Windows Application event log for error details. )
- 可以参考:
-
需要在ApplicationHost.config中添加支持
<system.applicationHost> <applicationPools> <add name="testMVC" managedRuntimeVersion="v4.0"> <processModel loadUserProfile="true" setProfileEnvironment="true"/> </add> </applicationPools> </system.applicationHost>
LocalDB Write Permisson
- IIS-AppPool账号对LocalDB文件需要有写权限