以下指令中,()属于global.asax中处理的事件。A、application_errorB、page_loadC、session_startD、application_beginrequest
以下指令中,()属于global.asax中处理的事件。
- A、application_error
- B、page_load
- C、session_start
- D、application_beginrequest
相关考题:
Global.asax的( )事件在每次页面请求开始时触发。 A.Application_EndRequestB.Application_StartC.Application_BeginRequestD.Session_Start
以下指令中,()属于global.asax中处理的事件。 A.application_errorB.page_loadC.session_startD.application_beginrequest
以下指令中,只有()不属于global.asax中处理的事件。 A.application_errorB.page_loadC.session_startD.application_beginrequest
在容器对象的嵌套层次中,事件的处理遵循独立性原则,即()。A、每个对象识别并处理其他的属性B、每个对象识别并处理属于自己的方法C、每个对象识别并处理属于自己的事件D、每个对象识别并处理其他的事件
以下指令中,只有()不属于global.asax中处理的事件。A、application_errorB、page_loadC、session_startD、application_beginrequest
You are implementing an ASP.NET Web site. The site uses a component that must be dynamically configured before it can be used within site pages. You create a static method named SiteHelper.Configure that configures the component. You need to add a code segment to the Global.asax file that invokes the SiteHelper.Configure method the first time, and only the first time, that any page in the site is requested. Which code segment should you use? ()A、void Application_Start(object sender, EventArgs e) { SiteHelper.Configure(); }B、void Application_Init(object sender, EventArgs e) { SiteHelper.Configure(); }C、void Application_BeginRequest(object sender, EventArgs e) { SiteHelper.Configure(); }D、Object lockObject = new Object(); void Application_BeginRequest(object sender, EventArgs e) { lock(lockObject()) { SiteHelper.Configure(); } }
FCC内部的两个CPU分别处理不同的指令信号,只有一种例外,它是()A、近进方式中,处理相同的倾斜和俯仰指令B、V NAV方式中,处理相同的倾斜和俯仰指令C、高度提醒功能D、VOR方式中,处理相同的倾斜和俯仰指令
单选题以下指令中,只有()不属于应用程序指令。A@applicationB@importC@assemblyD@page