网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
You are using the ASP.NET membership APIs to manage user accounts for a Web site. The Web.config file contains the definition for the membership provider. After modifying the Web.config file to enable password recovery, you create a PasswordReset.aspx file.? You need to enable users to reset their passwords online. The new passwords must be sent to them by e-mail after they have logged on through the Login.aspx page. In addition, users must be required to answer their secret questions before resetting their passwords. Which code logic should you use?()
A

Add a PasswordRecovery element to the PasswordReset.aspx file and configure it.

B

Modify the Page_Load to set the Membership.EnablePasswordReset to True in the PasswordReset.aspx file.

C

Add a ChangePassword element to the PasswordReset.aspx file and configure it.

D

Modify the Login.aspx form to include a Required Field validator on the secret question answer text box. Then redirect users to the PasswordReset.aspx file.


参考答案

参考解析
解析: 暂无解析
更多 “单选题You are using the ASP.NET membership APIs to manage user accounts for a Web site. The Web.config file contains the definition for the membership provider. After modifying the Web.config file to enable password recovery, you create a PasswordReset.aspx file.? You need to enable users to reset their passwords online. The new passwords must be sent to them by e-mail after they have logged on through the Login.aspx page. In addition, users must be required to answer their secret questions before resetting their passwords. Which code logic should you use?()A Add a PasswordRecovery element to the PasswordReset.aspx file and configure it.B Modify the Page_Load to set the Membership.EnablePasswordReset to True in the PasswordReset.aspx file.C Add a ChangePassword element to the PasswordReset.aspx file and configure it.D Modify the Login.aspx form to include a Required Field validator on the secret question answer text box. Then redirect users to the PasswordReset.aspx file.” 相关考题
考题 An administrator account is granted the CREATE SESSION and SET CONTAINER system privileges.A multitenant container database (CDB) instant has the following parameter set:THREADED_EXECUTION = FALSEWhich four statements are true about this administrator establishing connections to root in a CDB that has been opened in read only mode?()A. You can conned as a common user by using the connect statement.B. You can connect as a local user by using the connect statement.C. You can connect by using easy connect.D. You can connect by using OS authentication.E. You can connect by using a Net Service name.F. You can connect as a local user by using the SET CONTAINER statement.

考题 You would be using mainly English in this job. Can you manage English conversation?

考题 You work as the enterprise exchange administrator at Xxx .The Xxx network consists of a domain named xxx .The Xxx network is running in a Microsoft Exchange Server 2010 environment. Xxx has recently added a distribution group named KingDistribute.How can you allow a user named Dean Austin to manage membership of KingDistribute only but not of the other groups?()A、You must create a new direct role assignment for Dean Austin.B、You must view the properties of KingDistribute the add Dean Austin to it.C、You must add Dean Austin to KingDistribute’s Managed by list.D、You must change the default sharing policy.

考题 You create a Web site. The Web site has many predefined roles and associated users that will be used for security purposes. You need to manage these roles and user accounts. Which tool should you use? ()A、the Microsoft .NET Framework Configuration toolB、the Code Access Security Policy toolC、the ASP.NET IIS Registration toolD、the Web Site Administration Tool

考题 You have a computer that runs Windows XP Professional. You connect one local print device and install a printer. You share the printer. You need to give a user the ability to manage all new print jobs submitted to the printer. Your solution must prevent the user from installing additional local printers. What should you do?()A、In the printer properties, assign the Manage Printers permission to the user.B、In the printer properties, assign the Manage Documents permission to the user.C、From the Local Users and Groups snap-in, add the user to the Power Users group.D、From the Local Users and Groups snap-in, add the user to the Replicators group.

考题 Your company has an Active Directory Domain Services (AD DS) domain. You have a Windows Server 2008 R2 Hyper-V server. You manage the virtual environment by using Microsoft System Center Virtual Machine Manager (VMM) 2008 R2. You need to ensure that a user can create new virtual machines (VMs) on only a specific set of servers . The user must not be able to see or manage servers outside of that set within VMM . Which two actions should you perform?()A、Create a host group. Add the host servers that the user will manage to the host group.B、Create a failover cluster. Join the host servers that the user will manage to the failover cluster.C、Using Authorization Manager, assign the user to a role with the necessary permission to manage the servers by using VMM.D、Using Authorization Manager, assign the user to a role with the necessary permission to manage the servers by using the VMM Self-Service Portal.

考题 You are an enterprise administrator for Cer-tech .com. The company runs Windows Server 2008 on all theservers on the network. One of the servers, Server01 has the Web Server (IIS) role installed on it. A webdeveloper of the company created a website that run a web application called App1 using ASP.NET 3.0and hosted it on Server01. The Server01 was already running other ASP.NET applications. The new webapplication App1 must run under a security context that is separate from any other ASP.NET application onthe Web server. To fulfill this requirement, you create a local user account and grant account rights and permissions to runApp1. Which of the following options would choose to configure authentication for the new website tosupport App1?()A、Enable the ASP.NET Impersonation setting and specify the new local user account to edit the ASP.NETImpersonation setting.B、Enable the Windows Authentication setting.C、Enable the Forms Authentication setting and retain all the default settings.D、Configure the ASP.NET State service to log on to the new local user account by using the Services console.

考题 单选题You are creating an ASP.NET Web site. The site is configured to use Membership and Role management providers. You need to check whether the currently logged-on user is a member of a role namedAdministrators. Which code segment should you use?()A bool isMember = Roles.GetUsersInRole(Administrators).Any()B bool isMember = Membership.ValidateUser(User.Identity.Name, Administrators)C bool isMember = Roles.GetRolesForUser(Administrators).Any()D bool isMember = User.IsInRole(Administrators)

考题 多选题You are implementing an ASP.NET Web application. Users will authenticate to the application with an ID. The application will allow new users to register for an account. The application will generate an ID for the user based on the users full name. You need to implement this registration functionality. Which two actions should you perform?()AConfigure the SqlMembershipProvider in the web.config file.BConfigure the SqlProfileProvider in the web.config file.CCreate an ASP.NET page that contains a default CreateUserWizard control to create a new user account.DCreate an ASP.NET page that contains a custom form that collects the user information and then uses the Membership.CreateUser method to create a new user account.

考题 单选题You manage Hyper-V host servers and virtual machines (VMs) by using Microsoft System Center Virtual Machine Manager (VMM) 2008 R2. You grant a user the Delegated Administrator user role. You need to provide the user with the ability to manage VMs through the VMM Self-Service Portal. What should you do?()A In VMM, grant the user the Self-Service user role.B In VMM, grant the user the Administrator user role.C Enable the Integrated Windows Authentication option for the VMM Self-Service Portal.D Enable the Single sign-on for Terminal Services option for the VMM Self-Service Portal.

考题 单选题You create a Web site. The Web site has many predefined roles and associated users that will be used for security purposes. You need to manage these roles and user accounts. Which tool should you use? ()A the Microsoft .NET Framework Configuration toolB the Code Access Security Policy toolC the ASP.NET IIS Registration toolD the Web Site Administration Tool

考题 单选题You manage a server that runs Windows Server 2008. The server has the Web Server (IIS) role installed. The Web developer at your company creates a new Web site that runs an ASP.NET 3.0 Web application.  The ASP.NET Web application must run under a security context that is separate from any other ASP.NET application on the Web server.  You create a local user account and grant account rights and permissions to run the ASP.NET Web application.  You need to configure authentication for the new Web site to support the Web application. What should you do?()A Configure the Windows Authentication setting to Enabled.B Configure the Forms Authentication setting to Enabled by using all the default settings.C Configure the ASP.NET State service to log on to the new local user account by using the Services console.D Configure the ASP.NET Impersonation setting to Enabled. Edit the ASP.NET Impersonation setting by specifying the new local user account.

考题 单选题You and Stephen are the desktop administrators for your company. You install a printer on your Windows XP Professional computer. You share this printer on the company network. You want to ensure that only members of the DTAdmins local group can use this printer, and that only you and Stephen can manage the printer and all print jobs. You also want to ensure that members of the DTAdmins local group can manage only their own print jobs. How should you configure security on this printer?()A Grant Allow - Print permission to the DTAdmins group. Grant Allow - Manage Documents permission to your user account and to Stephen’s user account. B Grant Allow - Print permission to the DTAdmins group. Grant Allow - Manage Documents and Allow - Manage Printers permissions to your user account and to Stephen’s user account. C Grant Allow - Manage Documents permission to the DTAdmins group. Grant Allow - Manage Printers permission to your user account and to Stephen’s user account. D Grant Allow - Print permission to the DTAdmins group. Remove Allow - Manage Documents permission from the Creator Owner group. Grant Allow - Manage Printers permission to your user account and to Stephen’s user account. 

考题 单选题Which class defines the contract that ASP.NET implements to provide membership services using custom membership providers?()A FormsAuthenticationB RoleProviderC SqlRoleProviderD MembershipProvider

考题 单选题You create a Web site that is for members only. The behavior of the Web site changes according to the role of the user. The Web site uses the ASP.NET Membership control for creation of user accounts. You need to find out whether a user is a member of a particular role. What should you do? ()A Pass the user names and passwords to Membership.ValidateUser.B Pass the role names to User.IsInRole.C Pass the role names to Roles.RoleExists.D Pass the user names to Membership.GetUser.

考题 单选题You work as the IT professional in an international company which is named Wiikigo. You are experiencedin implementing and administering a network operating system. You are specialized in deploying servers,configuring Windows Server 2008 Terminal services and network application services, and configuring aweb services infrastructure. You are in charge of a server that runs Windows Server 2008. The server hasthe Web Server (IIS) server role installed. The Web developer at your company creates a new Web sitethat runs an ASP.NET 3.0 Web application. The ASP.NET Web application must run under a securitycontext that is separate from any other ASP.NET application on the Web server. You create a local useraccount and grant account rights and permissions to run the ASP.NET Web application. Authentication forthe new Web site should be configured to support the Web application. What action should you perform?()A The ASP.NET Impersonation setting should be configured to Enabled. Edit the ASP.NET Impersonation setting by specifying the new local user account.B The Windows Authentication setting should be configured to Enabled.C The Forms Authentication setting should be configured to Enabled by using all the default settings.D The ASP.NET State Service should be configured to log on to the new local user account by using the Services console.

考题 多选题Your company has an Active Directory Domain Services (AD DS) domain. You have a Windows Server 2008 R2 Hyper-V server. You manage the virtual environment by using Microsoft System Center Virtual Machine Manager (VMM) 2008 R2. You need to ensure that a user can create new virtual machines (VMs) on only a specific set of servers . The user must not be able to see or manage servers outside of that set within VMM . Which two actions should you perform?()ACreate a host group. Add the host servers that the user will manage to the host group.BCreate a failover cluster. Join the host servers that the user will manage to the failover cluster.CUsing Authorization Manager, assign the user to a role with the necessary permission to manage the servers by using VMM.DUsing Authorization Manager, assign the user to a role with the necessary permission to manage the servers by using the VMM Self-Service Portal.

考题 单选题You manage a domain controller that runs Windows Server 2008 R2 and the DNS Server server role.The DNS server hosts an Active Directory-integrated zone for your domain.You need to provide a user with the ability to manage records in the zone. The user must not be able to modify the DNS server settings.What should you do?()A Add the user to the DNSUpdateProxy Global security group.B Add the user to the DNSAdmins Domain Local security group.C Grant the user permissions on the zone.D Grant the user permissions on the DNS server.

考题 单选题You manage several computers that run Windows 7. A user wants to roll back a driver. The user opens thedevice properties in Device Manager and discovers that the Roll Back Driver option is unavailable. Youconnect to the computer by using Windows Remote Assistance. You need to roll back the driver to itsprevious version.  What should you do first?()A Add the user to the Power Users group.B Right-click Device Manager and select Run as administrator.C From System Properties, modify Device Installation Settings.D From the Local Group Policy, modify Device Installation Restrictions.