A.给Web窗体增加能够输出XHTML的自定义控件。
B.给Web窗体增加能够输出WML的自定义控件。
C.给Web窗体增加mobile控件。
D.给Web窗体增加Web服务器控件。
第1题:
A. 在code-behind 文件增加一个方法isColor 。确保这个方法返回一个Boolean 值、MobileCapabilities类的实例和一个字符串。
B. 在code-behind 文件增加一个方法isColor 。确保它使用了MobileCapabilities 类并返回一个要显示的图像的URL字符串。
C. 在image控件的定义标记之间增加如下的代码段:<DeviceSpecific> <Choice Filter="isColor" ImageURL="logo-color.gif" /></DeviceSpecific>
D. 在Web.config文件中为deviceFilters元素增加如下的节点<filter name="isColor" compare="IsColor" argument="true" />
第2题:
A.
B.
C.
D.
第3题:
A.为 Web 窗体的 body 增加了<control id="MyControl1" Runat="server" />元素。
B.为 Web 窗体增加了@ Register 标记。
C.为 Web 窗体的 body 增加了<uc1:MyControl id="MyControl1" Runat="server" /> 元素。
D.在 Web 窗体的<head>节增加了<meta control="MyControl"> 元素。
E.为 Web 窗体增加了@ Control 标记
第4题:
你创建了一个名为Template.master的母版页。Template.master包含了如下的ContentPlaceHolder 服务器控件。你创建了10个Web窗体,它们都使用Template.master作为母版页。每个Web窗体有如下的Content控件和母版页的ContentPlaceHolder控件进行对应。现在,你需要配置Web页,使其当Web窗体没有提供content的时候,默认的内容将显示在area2ContentPlaceHolder控件中。你应该怎么做?()
A. 在Template.master 中,移动默认内容到area2中。从不提供内容的Web窗体中移除area2。
B. 在Template.master 中,移动默认内容到area2中。在不提供内容的Web窗体中留下空白的 area2 Content声明。
C. 在Web窗体中,移动默认内容到area2中。在Template.master 中移除area2。
D. 在Template.master中创建一个名为area2_default 的ContentPlaceHolder 控件。然后,放 默认内容在area2_default中。从不提供内容的Web窗体中移除area2。
第5题:
A. 设置页属性 AutoEventWireup="False"。移除Web窗体元素中onunload="Page_Unload" 。
B. 设置页属性 AutoEventWireup="False"。在Web窗体元素中增加 OnUnload="Page_Unload" 。
C. 设置页属性AutoEventWireup="False"。增加Web窗体属性autocomplete=on。
D. 设置页属性AutoEventWireup="True".