单项选择题
当 Web 应用关闭后,你需要人工释放资源。为此,你应该响应哪一个事件?()
A.Application_BeginRequest
B.Application_End
C. Application_Start
D.Application_EndRequest
相关考题
-
多项选择题
你如何重定向一个指定页面到桌面计算机或移动设备?()
A.if (Request.Browser["IsMobileDevice"] == "true") Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if
B.if (Request.Cookies.IsMobileDevice) Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if
C.if (Request.Browser.IsMobileDevice) Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if
D.if (Request.Cookies["IsMobileDevice"] == "true") Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if
-
多项选择题
下面那个代码段设置myButton控件显示在HTML页左上角100px的位置?()
A.
B.
C.
D. -
多项选择题
下面哪一些ASP.NET控件在mobile设备上和标准控件提供了相似的功能?()
A.LinkButton
B.Label
C.RadioButton
D.Table
E.Button
