Application_Start(object sender, EventArg e)
中, sender是 HttpApplicationFactory 类型。一个站点初始化时, 调用一次且仅调用一次Application_start,并且此时的Page, Request, Server等变量都没有被创建,不能够直接引用他们。
(原文链接 http://ddbiz.com/?p=144)
如果要在Application_Start中获取Request,Server 等信息的话,可以通过:
HttpContext.Current. Request
. Server
进行操作