重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
找答案首页 > 全部分类 > 计算机类考试
搜题
网友您好, 请在下方输入框内输入要搜索的题目:
搜题
题目内容 (请给出正确答案)
[主观题]

你正在创建一个自定义服务器控件,并且你需要此控件支持在Visual Studio 2005设计器中使用。为此,

你创建了两个类:一个是从Composite Control继承的myControl类,另一个是从Composite ControlDesigner继承的myControlDesigner类。你需要把myControl和myControlDesigner进行关联。下面那一个可以正确达到此目的?()

A.[Designer(myControlDesigner)] public class myControl: CompositeControl

B.[Designer(typeof(myControl))] public class myControlDesigner: CompositeControlDesigner

C.[Designer(myControl)] public class myControlDesigner: CompositeControlDesigner

D.[Designer(typeof(myControlDesigner))] public class myControl: CompositeControl

查看答案
更多“你正在创建一个自定义服务器控件,并且你需要此控件支持在Visual Studio 2005设计器中使用。为此,”相关的问题

第1题

Your network contains a DNS server named DNS1 that runs Windows Server 2008 R2. DNS1 hosts

a zone named contoso.com.Dynamic updates are enabled on the zone.The network contains a server named Web1.contoso.com.All computers on the network are configured to use DNS1 as their DNS server.You need to ensure that users can connect to Web1.contoso.com by using the name portal.contoso.com.The solution must ensure that the users can connect by using portal. contoso.com if the IP address of Web1.contoso.com changes.Which type of resource record should you create?()

A. Alias (CNAME)

B. Host (A)

C. Host Information (HINFO)

D. Pointer (PTR)

点击查看答案

第2题

YourcompanyhasanActiveDirectoryforestthatrunsatthefunctionallevelofWindowsServer2008.Youim

plementActiveDirectoryRightsManagementServices(AD RMS).YouinstallMicrosoftSQLServer2005.WhenyouattempttoopentheAD RMSadministrationWebsite,youreceivethefollowingerrormessage:"SQLServerdoesnotexistoraccessdenied."YouneedtoopentheAD RMSadministrationWebsite.Whichtwoactionsshouldyouperform()

A.RestartIIS.

B.InstallMessageQueuing.

C.StarttheMSSQLSVCservice.

D.ManuallydeletetheServiceConnectionPointinActiveDirectoryDomainServices(ADDS)andrestartAD RMS.

点击查看答案

第3题

Your company has a single active directory forest that has a domain in north America named

na.contoso.com and a domain in south America named sa.contoso.com. the client computers run windows vista. You need to configure the client computes in the America office to improve the name resolution response time for resources in the south America office what should you do?()

A.Configure a new GPO that disables the local-link multicast name resolution feature. Apply the policy to all the client computers in the north America office.

B.Configure a new GPO that enabled the loca-link multicast name resolution feature. Apply the policy to all the client computers in the North America office.

C.Configure a new GPO that configures the DNS suffix search list option to sa.contoso.com, na.contoso.com. apply the policy to all client computers in the north America office.

D.Configure the priority value for the SRV records on each of the north American domain controllers to 5.

点击查看答案

第4题

Your network contains a DNS server named Server1 that runs Windows Server 2008 R2. You nee

d to ensure that client computers can resolve IPv6 addresses to fully qualified domain names(FQDNs). Which type of resource record should you create?()

A. Alias (CNAME)

B. Host (A)

C. Host (AAAA)

D. Pointer (PTR)

点击查看答案

第5题

Yourcompanyhasamainofficeand40branchoffices.EachbranchofficeisconfiguredasaseparateActiveD

irectorysitethathasadedicatedread-onlydomaincontroller(RODC).AnRODCserverisstolenfromoneofthebranchoffices.YouneedtoidentifytheuseraccountsthatwerecachedonthestolenRODCserver.Whichutilityshouldyouuse()

A.Dsmod.exe

B.Ntdsutil.exe

C.ActiveDirectorySitesandServices

D.ActiveDirectoryUsersandComputers

点击查看答案

第6题

YourcompanyhasanActiveDirectoryforestthatcontainsasingledomain.ThedomainmemberserverhasanA

ctiveDirectoryFederationServices(AD FS)serverroleinstalled.YouneedtoconfigureAD FStoensurethatAD FStokenscontaininformationfromtheActive Directorydomain.Whatshouldyoudo()

A.Addandconfigureanewaccountstore.

B.Addandconfigureanewaccountpartner.

C.Addandconfigureanewresourcepartner.

D.AddandconfigureaClaims-awareapplication.

点击查看答案

第7题

Your company has a main office and a branch office.The network contains two DNS servers na

med DNS1 and DNS2.DNS1 is located in the main office. DNS1 hosts a primary standard zone named contoso.com. The contoso.com zone is configured to use DNSSEC.DNS2 is located in the branch office. DNS2 is a caching-only DNS server. You need to ensure that client computers in the branch office can receive authoritative responses to queries for contoso.com if a WAN link fails. DNSSEC security must be maintained.What should you configure on DNS2 for contoso.com?()

A. a conditional forwarder

B. a secondary zone

C. a zone delegation

D. an Active Directory-integrated stub zone

点击查看答案

第8题

Your company has an active directory domain. A server named server1 runs the network acces

s policy server role. You need to disable IPv6 for all connections except for the tunnel interface and the IPv6 loopback interface. What should you do?()

A.Run the netsh ras ipv6 set command.

B.Run the netsh interface ipv6 delete command.

C.Run ipv6.exe and remove the ipv6 protocol.

D.From the local area connection properties, uncheck internet protocol versions 6 (TCP/IPv6).

点击查看答案

第9题

你正在创建一个使用一些自定义用户控件的 ASP.NET Web 应用。为了去提高性能,你需要使用缓冲来存储控件输出的副本 5 分钟。已知,控件输出使用不同的用户和会话进行标识,因此你需要为多个用户缓冲一个控件副本。下面哪一个配置是正确的?()

A.<%@ OutputCache Duration="300" Shared="true" VaryByParam="None" %>

B.<%@ OutputCache Duration="5" VaryByParam="None" %>

C.<%@ OutputCache Duration="5" Shared="true" VaryByParam="None" %>

点击查看答案

第10题

Youneedtowriteacodesegmentthatwillcreateacommonlanguageruntime(CLR)unitofisolationwithinanapplication.Whichcodesegmentshouldyouuse?()

A.A

B.B

C.C

D.D

点击查看答案
下载上学吧APP
客服
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
选择优惠券
优惠券
请选择
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

功能 扣减规则
基础费
(查看答案)
加收费
(AI功能)
文字搜题、查看答案 1/每题 0/每次
语音搜题、查看答案 1/每题 2/每次
单题拍照识别、查看答案 1/每题 2/每次
整页拍照识别、查看答案 1/每题 5/每次

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

- 微信扫码关注上学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注上学吧 -
请用微信扫码测试
选择优惠券
确认选择
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,如果您知道正确答案,欢迎您来纠错

上学吧找答案