ASP.NET MVC3 系列教程 – Web Pages 1.0

I:Web Pages 1.0中以“_”开头的特别文件(文件命名时不区分大小写)

“_appstart.cshtml” & “_pagestart.cshtml” & “_viewstart.cshtml”

_appstart.cshtml - 应用程序启动时在Global. Application_Start方法后执行
功能:用于进行App的初始化时,需要进行处理的内容.例:向数据库记录系统初始化的一些信息
功能与Global.Application_Start类似,差别在于:Global的Start先执行,然后在到该_appStart,值得注意的是在_appStart上下文中可以使用.NET4的dynamic新特性~~在声明中,作为属性、字段、索引器、参数、返回值或类型约束的类型。

http://msdn.microsoft.com/zh-cn/library/dd264741.aspx
code:

@{
 this.App.StartMessage = "App顺利已启动了.恭喜!哈";
 var error = this.App.Error as string;
 if (error == null)
 {
 this.App.Error = "使用dynamic新特性之前.请先赋值~";
 error = this.App.Error;
 @*
 在这里很遗憾地告诉大家.dynamic不支持智能感知
 因为编译无法100%准确得知程序的执行顺序.
 所以无法智能感知!
 *@
 }
 // 在这里可以引用 App.Error动态字段了.
}

code:

//--------------------------------------------
@{
 @* ~/Views/_ViewStart.cshtml *@
 Response.Write(string.Format("<h1>{0}</h1>", App.StartMessage));
 Layout = "~/Views/Shared/_Layout.cshtml";
}

成员来自:

at System.Web.WebPages.Razor.WebPageRazorHost

at System.Web.WebPages.ApplicationStartPage


_viewstart.cshtml - 单个View处理Request时执行

功能:或许你已经联想到了….Global的Page_Load(仅应用于View)……

执行顺序位于_appstart.cshtml之后.毕竟所除层次不同

成员来自:

at System.Web.Mvc.RazorViewEngine

综上所述得知MVC3的APP初始化顺序为:

(不排除本人未能发现的其他文件类型,但目前据我所知道应用最广的就这三个)

在Web Pages 1.0下,除非你显式以”_”开头命名View.否则你在请求”_”开头的页面时会遇到以下无法服务的页面提示

(这图在Razor语法基础时就帖过了.这里帖出来是让大家温故而知新)

关于*.cshtml生成的类名格式

绝大部分页生成的程序集格式

页面编译都是以单独页面编译为单个带随机字符串的程序集,当然也可以采用预编译方式将n个页编译为1个程序集

II:关于多目录下以”_”开头的特殊文件的执行顺序

_appstart.cshtml仅能存在于根目录(“~/”),

如果你在子目录下放置_appstart.cshtml文件的话.那么该文件就不会被App初始化时执行

当访问~/somepage.cshtml时.

会先执行~/_pageStart.cshtml

然后在执行 ~/somepage.cshtml

当在复杂的子目录环境下时:

~/_pageStart.cshtml

      ~/sub/_pageStart.cshtml

      ~/sub/somepage.cshtml

III:Web Pages 1.0脱离WebForms的启动原理

首先Web Pages利用特性往本身程序集上与ASP.NET挂钩

// SourceFile: AssemblyInfo.cs(System.Web.WebPages.dll)

//AttributeClass: System.Web. PreApplicationStartMethodAttribute

//特性介绍:为ASP.NET 其他Provide提供扩展

//参数1: ASP.NET Provide的类型

//参数2:运行的方法名

//Source:

[assembly: PreApplicationStartMethod(typeof(System.Web.WebPages.PreApplicationStartCode), "Start")] //Line: 15

然后我们在这里可以看到Web Pages的ASP.NET Provide是.Web.WebPages.PreApplicationStartCode

启动方法是Start

public static void Start() {
 // Even though ASP.NET will only call each PreAppStart once, we sometimes internally call one
 // another PreAppStart to ensure that things get initialized in the right order. ASP.NET does
 // order so we have to guard against multiple calls.
 // All Start calls are made on same thread, so no lock needed here.
 
 if (_startWasCalled) {
 return;
 }
 _startWasCalled = true; //设置Start方法已被调用
 
 WebPageHttpHandler.RegisterExtension("cshtml");//注册扩展
 WebPageHttpHandler.RegisterExtension("vbhtml");//注册扩展
 
 // Turn off the string resource behavior which would not work in our simple base page
 PageParser.EnableLongStringsAsResources = false;//优化选项
 
 DynamicModuleUtility.RegisterModule(typeof(WebPageHttpModule));//重点在这里了.~~注册了一个WebPageHttpModule
 
 ScopeStorage.CurrentProvider = new AspNetRequestScopeStorageProvider();
 //ASP.NET Web Pages的RequestScopeStorageProvider
}
IV:附录:Global执行顺序

当WebApp开始运行时

Application_Start

Application_BeginRequest

Application_AuthenticateRequest

Session_Start

当WebApp终止运行时

Session_End

Application_End

当一个Request入站时

Application_BeginRequest

Application_AuthenticateRequest 过后到达*.cshtml

当在*.cshtml throw new Exception();时

Application_BeginRequest

Application_AuthenticateRequest

Application_Error(在throw处转至,不会执行*.cshtml的throw后的下文)

例:

@{

Throw new Exception();//仅做示例

//下文不会被执行,而直接跳到Application_Error终止Response

}

V:有经验的看官,或许已经知道了.可以在*.cshtml中做IoC(Unity 2.0有提供)来变Themes换布局等.

更深入点,你可以dynamic创建*.cshtml文件~~实现按需创建Web页~HOHO~~~

@* MVC3一个新的Web开发革命正式诞生 *@

作者的文章帮助很大

声明: 本文版权归作者dotNetDR_和博客园共有,转载必须保留此段声明。

_appstart.cshtml,_pagestart.cshtml,_viewstart.cshtml的更多相关文章

  1. MVC学习五:Razor布局页面 _ViewStart.cshtml

    如图: _ViewStart.cshtml就是MVC中的布局页面/模板页面. 用户访问流程图: 原理:先去执行Views文件夹下[_ViewStart.cshtml]页面,然后同级目录文件夹(上图中的 ...

  2. PartialViewResult不鸟_ViewStart.cshtml

    概述 在ASP.NET MVC中,对于Action中得到的ActionResult如果是一个ViewResult对象,那么在进行View呈现时,则会先执行_ViewStart.cshtml,然后再去执 ...

  3. Razor引擎中的_ViewStart.cshtml

    Startup Code是在所有View执行之前加载和执行的代码. 在Razor引擎中的_ViewStart.cshtml 就是装载这些“预执行代码”的文件,它有两个特点: 一.就是所有View执行之 ...

  4. MVC中的_viewstart.cshtml(没有设置Layout却引用了布局)

    今天Home视图中新增了一个视图,因为不需要设置Layout就没与管他,但是运行起来一看,自动引用了布局,分析了半天 也没看出是哪的错误? 后来尝试着在area中增加了一个同样的视图就没有问题,比较这 ...

  5. mvc5 _ViewStart.cshtml 模板页如何定义

    1._Viewstart.cshtml是一个在呈现View文件的时候的启动文件,会在所有View(.cshtml)被执行之前执行,主要用于一些不方便或不能在母版(_Layout.cshtml)中进行的 ...

  6. 如何利用 _ViewStart.cshtml对页面添加代码?

    _ViewStart.cshtml 添加的代码会出现在页面的最上面(<html> 之前) .这样就造成了我原先很多页面出现兼容性问题(经难是因为<html>之前出现了其它的代码 ...

  7. EF5+MVC4系列(10) mvc的布局页面 _ViewStart.Cshtml

    当客户端请求 /Product/Index的时候, 如果在视图的根目录下有 _ViewStart.Cshtml 就会先执行这个,再去执行 Product文件夹下的Index视图, 如果Product文 ...

  8. _viewstart.cshtml的作用

    在ASP.NET MVC 3.0及更高版本中,用Razor模板引擎新建项目后,Views目录下会出现一个这样的文件:_ViewStart.cshtml. _viewstart.cshtml的作用 1. ...

  9. ASP.NET MVC中的 _ViewStart.cshtml文件的作用【摘抄】

    ViewStart 在前面的例子中,每一个视图都是使用Layout 属性来指定它的布局.如果多个视图使用同一个布局,就会产生冗余,并且很难维护. _ViewStart.cshtml 页面可用来消除这种 ...

随机推荐

  1. 2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)

    1 :The img tag img tag allows put some img file into page. just like : <a href = "me.png&quo ...

  2. 【转】博弈问题及SG函数(真的很经典)

    博弈问题若你想仔细学习博弈论,我强烈推荐加利福尼亚大学的Thomas S. Ferguson教授精心撰写并免费提供的这份教材,它使我受益太多.(如果你的英文水平不足以阅读它,我只能说,恐怕你还没到需要 ...

  3. SQL 时间差函数

    SELECT DateDiff(DAY,T.ActualEndDate,GetDate())  FROM JCW_CheckTask T WHERE T.status = 2

  4. Magento删除产品同时删除图片

    在Magento后台删除产品时,默认不会删除产品的图片,如果长期不清理这些废弃的图片,会导致Media目录下的文件越来越多,浪费服务器空间,为了实现删除产品的同时删除图片,网络上常见的方法是修改Mag ...

  5. mysql 日期 时间戳 转换

    /***************************************************************************************** * mysql 日 ...

  6. Java 最简单的计算器——使用Args参数

    public class Test{ public static void main(String[] args){ if(args.length<3){ System.out.println( ...

  7. css cursor属性详解

    cursor                       // 鼠标移上去的鼠标状态 属性值有以下: (可以将鼠标移上以下属性值看看效果) auto crosshair default pointer ...

  8. dll清理

    結束了閉關,又得與人類交流了,只好裝QQ 印象中企鵝手腳一向是BAT中最乾淨的-結果還是裝了不少樂色,一併挖出來除之   C:\program files\common files\tencent\q ...

  9. css link和@import区别

    1.link语法结构 <link href="CSSurl路径" rel="stylesheet" type="text/css" / ...

  10. Java强,软,弱,虚类型

    链接 http://wiseideal.iteye.com/blog/1469295