ASP.NET MVC 4应用程序文件夹

简介: App_Start It has configuration classes to reduce clutter code in the Global.asax 它包含了配置类来减少在Global.asax中的杂乱代码 Application_Start 方法 App_Start 文件夹里有如下文件:AuthConfig.cs: Related to security settings, including sites for OAuth login. 关于安全设置,包含网站的授权登录。

App_Start

It has configuration classes to reduce clutter code in the Global.asax

它包含了配置类来减少在Global.asax中的杂乱代码

Application_Start 方法

App_Start 文件夹里有如下文件:

AuthConfig.cs: Related to security settings, including sites for OAuth login.

关于安全设置,包含网站的授权登录。

BundleConfig.cs: Related to register bundles for the bundling and minification

有关用于捆绑和微小的注册

FilterConfig.cs: To register global MVC filters.(by default HandleErrorAttribute is registered)

用来注册全局MVC过滤。(默认HandleErrorAttribute是已注册的)

RouteConfig.cs: Related to MVC Route configuration

有关MVC路由的配置

WebApiConfig.cs: Used to register Web API routes and configuration settings.
用于注册Web API路由和配置设置。

Also, this folder helps to use nuget packages that use Application_Start code, without touching Global.asax.cs.
同样,这个文件夹帮助NuGet包使用Application_Start代码儿不接触Global.asax.cs。

Areas

An MVC structure inside the application to partition our web application into smaller parts.

一个MVC架构在应用程序分割我们的web应用成较小的部分。

Content

To put CSS and other static contents

存放CSS和其他静态目录

Controllers

Contains the controller classes

包含控制类

Images

For images, It is being referenced from the Content\Site.css by default.

针对Imanges文件夹,它默认被从Content\SIte.css引用。

Models

Contains view model and domain model classes.

包含视图模型和域模型类

Scripts

Stores all JavaScript libraries and files

存储所有的Javascript库和文件

Views

Related to the display of the application (UI).

关于应用程序界面的显示

/Views/Shared

This directory holds layouts (master-page in-terms of web forms) and views which is used to store views shared between controllers 

这个目录掌握着布局(web表单的主页)和被用于在控制类之间存储视图共享的视图

/Views/[FolderName]

Views or Partial Views specific to that folder or single controller like Account folder is specific to Account controller for registering and logging in to user accounts.

视图或者Partial视图针对文件夹或者单个控制,像Account文件夹是针对Account控制类用来注册和打印用户账号的日志。

目录
相关文章
|
2月前
|
XML 存储 安全
C#开发的程序如何良好的防止反编译被破解?ConfuserEx .NET混淆工具使用介绍
C#开发的程序如何良好的防止反编译被破解?ConfuserEx .NET混淆工具使用介绍
69 0
|
3月前
|
Ubuntu 持续交付 API
如何使用 dotnet pack 打包 .NET 跨平台程序集?
`dotnet pack` 是 .NET Core 的 NuGet 包打包工具,用于将代码打包成 NuGet 包。通过命令 `dotnet pack` 可生成 `.nupkg` 文件。使用 `--include-symbols` 和 `--include-source` 选项可分别创建包含调试符号和源文件的包。默认情况下,`dotnet pack` 会先构建项目,可通过 `--no-build` 跳过构建。此外,还可以使用 `--output` 指定输出目录、`-c` 设置配置等。示例展示了创建类库项目并打包的过程。更多详情及命令选项,请参考官方文档。
209 11
|
3月前
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
44 7
|
3月前
|
存储 运维
.NET开发必备技巧:使用Visual Studio分析.NET Dump,快速查找程序内存泄漏问题!
.NET开发必备技巧:使用Visual Studio分析.NET Dump,快速查找程序内存泄漏问题!
|
3月前
|
自然语言处理 C# 图形学
使用dnSpyEx对.NET Core程序集进行反编译、编辑和调试
使用dnSpyEx对.NET Core程序集进行反编译、编辑和调试
|
3月前
|
存储 开发框架 前端开发
ASP.NET MVC 迅速集成 SignalR
ASP.NET MVC 迅速集成 SignalR
65 0
|
4月前
|
开发框架 前端开发 .NET
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
49 0
|
4月前
|
开发框架 前端开发 安全
ASP.NET MVC 如何使用 Form Authentication?
ASP.NET MVC 如何使用 Form Authentication?
|
Web App开发 存储 缓存
asp.net MVC 应用程序的生命周期
下面这篇文章总结了 asp.net MVC 框架程序的生命周期。觉得写得不错,故转载一下。 转载自:http://www.cnblogs.com/yplong/p/5582576.html       首先我们知道http是一种无状态的请求,他的生命周期就是从客户端浏览器发出请求开始,到得到响应结束。
1001 0

相关实验场景

更多