A. 确保子列和父列有同样的名称。 B. 确保子表和父表有同样的名称。 C. 确保子列和父列有同样的数据类型。 D. 确保子表的每行数据在父表都有一个对应行。 E. 确保这个两个表在数据库中存在一个实际的关系定义。
A. BehaviorEditorPart B. AppearanceEditorPart C. PropertyGridEditorPart D. LayoutEditorPart
A. WebAuditEvent B. WebEventManager C. WebBaseEvent D. WebRequestEvent
A. 创建ContosoUI控件为Web控件库。 B. 创建ContosoUI控件为Web用户控件。 C. 在Visual Studio .NET 工具栏,浏览并选择ContosoUI.ascx。 D. 在Visual Studio .NET 工具栏,浏览并选择ContosoUI.dll.
A. Modify the connection string in the Web.config file to connect to the CRM database. B. Add new a SqlMembershipProvider to the Web.config file. C. Create a custom Membership Provider inheriting from MembershipProvider. D. Create a custom MembershipUser inheriting from MembershipUser.
A. Ensure that the source database is Microsoft SQL Server. B. Ensure that the destination database is Microsoft SQL Server. C. Ensure that the column names in the source table match the column names in the destination table. D. Ensure that the bulk copy program (bcp) utility is installed on the destination server.
A.Base Data Bound Control B.Hierarchical Data Bound Control C.Composite Data Bound Control D.List Control
A. Roles.CreateRole(listName);User.InInRole(listName); B. Roles.CreateRole(listName);Roles.AddUserToRole(useName, listName); C. Roles.RoleExists(listName);Roles.AddUserToRole(useName, listName); D. Roles.RoleExists(listName);User.InInRole(listName);
A. Use the Copy Web tool. B. Use the Publish Web tool. C. Use XCOPY. D. Use the Web Setup project Installer.
A. Add the ConnectionProvider attribute to OrdersPart. B. Add the ConnectionProvider attribute to CustomerPart. C. Add the ConnectionConsumer attribute to CustomerPart. D. Add the ConnectionConsumer attribute to OrdersPart. E. Add OrdersPart and CustomerPart to the WebParts directory. F. Add OrdersPart and CustomerPart to the App_Code directory. G. Declare the connections within a StaticConnections subtag of a WebPartZone class. H. Declare the connections within a StaticConnections subtag of a WebPartManager class. I. Define an interface specifying the methods and properties that are shared between the Web Parts.