题目内容 (请给出正确答案)
[主观题]

您工作在Cer-Tech.com应用程序开发。Cer-Tech.com运用Visual Studio.NET 2005作为其应用开发平台。

你用的是XP系统、计算机名为Client01 的个人电脑做开发。现在你要用这台机器开发一个.NET Framework 2.0的应用程序,代码如下:之后你完成了该程序并且注册进COM interoperability库中,团队里的其他开发人员抱怨他们在他们自己的COM应用里不能创建关于Shape 类的实例,为了保证COM应用能够创建这个类的实例,你需要怎么做?()

您工作在Cer-Tech.com应用程序开发。Cer-Tech.com运用Visual Studio

A.您工作在Cer-Tech.com应用程序开发。Cer-Tech.com运用Visual Studio

B.您工作在Cer-Tech.com应用程序开发。Cer-Tech.com运用Visual Studio

C.您工作在Cer-Tech.com应用程序开发。Cer-Tech.com运用Visual Studio

D.您工作在Cer-Tech.com应用程序开发。Cer-Tech.com运用Visual Studio

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“您工作在Cer-Tech.com应用程序开发。Cer-Tec…”相关的问题

第1题

You are developing a Windows Comunication Foundation (WCF) service that is used to check t

he status of orders placed by customers.The following code segment is part of your service.(Line numbers are included for reference only.)01 [ServiceContract]02 public interface IStatus03 {04 [OperationContract]05 int GetOrderStatus(string orderNumber);06 }0708 class OrderService : IStatus09 {10 public int GetOrderStatus(string orderNumber)11 {12 ...13 }14 }1516 class Program17 {18 static void Main(string[] args)19 {202122 host.Open();23 ...24 }25 }You need to ensure that the service always listens at net.pipe://SupplyChainServer/Pipe.What should you do?()

A.

B.

C.

D.

点击查看答案

第2题

你开发一个管理信用卡信息的Web控件。这个Web控件代码显示在下图。你在Web窗体上使用如下的代码段注册了此控件:TagPrefix="cc1"%>现在,你需要在Web窗体上声明这个控件,你应该使用下面那个代码段?()

A.

B.

C.

D.

点击查看答案

第3题

YouhavetwoserversnamedServer1andServer2.BothserversrunWindowsServer2008R2.Server1isconfigu

redasanenterpriserootcertificationauthority(CA).YouinstalltheOnlineResponderroleserviceonServer2.YouneedtoconfigureServer1tosupporttheOnlineResponder.Whatshouldyoudo()

A.ImporttheenterpriserootCAcertificate.

B.ConfiguretheCertificateRevocationListDistributionPointextension.

C.ConfiguretheAuthorityInformationAccess(AIA)extension.

D.AddtheServer2computeraccounttotheCertPublishersgroup.

点击查看答案

第4题

你正在创建一个可以供 Web 应用使用的模板化 Web 控件。你需要在没有编译的情况下能够把此控件增加到你的 Web 页面上,你应该如何做?()

A.确保Web控件从WebControl类继承。

B.确保Web控件从Control类继承.

C.确保Web控件从CompositeControl类继承.

D.确保Web控件从UserControl类继承.

点击查看答案

第5题

Your network contains a server named Server1 that runs Windows Server 2008 R2. Server1 is

located in a branch office. You discover that users cannot obtain cached documents from Server1. The BranchCache configuration on Server1 is shown in the exhibit. (Click the Exhibit button.) You need to ensure that Server1 hosts cached content for client computers in the branch office.What should you do?()

A.Enable Peer Discovery firewall rules

B.Set the Startup Type of the BranchCache service to Automatic, and then start the service

C.At the command prompt, run netsh.exe branchcache set service mode=DISTRIBUTED

D.At the command prompt, run netsh.exe branchcache set service mode=HOSTEDCLIENT

点击查看答案

第6题

You are developing a custom service host for a Windows Communication Foundation (WCF) serv

ice. The service host is named MovieServiceHost.You need to deploy the service with the custom service host in Microsoft Internet Information Services (IIS) 7.0.What should you do?()

A. Make sure that service class has a default constructor. Add a public read-only property with the name ServiceHost that returns an instance of the MovieServiceHost class.

B. Create a factory for the custom service host. Name the factory MovieServiceHostFactory. In the web.config file, add the following attribute to the element within theelement. factory="MovieServiceFactory"

C. Create a factory for the custom service host. Name the factory MovieServiceHostFactory. In the .svc file, add the following line. <%@ServiceHost Service="MovieServiceHostFactory" Language="C#">

D. Decorate the custom service host class with the following line. [System.ServiceModel.Activation.ServiceActivationBuildProvider()]

点击查看答案

第7题

Youhavealogin.ascxcontrolandtodisplayitinaviewwhichmethoduwoulduse()

A.http.display

B.http.partial

C.http.load

D.http.get

点击查看答案

第8题

你正在创建一个自定义控件。控件的 UI 必须要包含几个文本框和两个按钮。要求,此控件在全局程序级缓冲中有效并且可供多个 Web 应用同时使用。为了用最少的代码实现这些功能,你该如何做?()

A.控件从System.Web.UI.Control继承。

B.控件从System.Web.UI.WebControls.CompositeControl继承.

C.控件从System.Web.UI.WebControls.WebControl继承.

D.控件从System.Web.UI.UserControl继承

点击查看答案

第9题

你有一个配置为实现个性化的 Web 应用。你需要在 Web 应用的一个页面上访问个性化数据。为了用最少的管理和代码开销,你应该怎样做?()

A.从HttpContext对象的Session属性访问个性化数据。

B.从HttpContext对象的Application属性访问个性化数据.

C.从HttpContext对象的Cache属性访问个性化数据。

D.从HttpContext对象的Profile属性访问个性化数据。

点击查看答案

第10题

Youcreateaclasslibrarythatisusedbyap

plicationsinthreedepartmentsofyourcompany.ThelibrarycontainsaDepartmentclasswiththefollowingdefinition.

publicclassDepartment{

publicstringname;

publicstringmanager;

}

Eachapplicationusesacustomconfigurationsectiontostoredepartment-specificvaluesintheapplicationconfigurationfileasshowninthefollowingcode.

YouneedtowriteacodesegmentthatcreatesaDepartmentobjectinstancebyusingthefieldvaluesretrievedfromtheapplicationconfigurationfile.

Whichcodesegmentshouldyouuse?()

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

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

警告:系统检测到您的账号存在安全风险

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

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信