A. 確保子列和父列有同樣的名稱。 B. 確保子表和父表有同樣的名稱。 C. 確保子列和父列有同樣的數(shù)據(jù)類型。 D. 確保子表的每行數(shù)據(jù)在父表都有一個(gè)對(duì)應(yīng)行。 E. 確保這個(gè)兩個(gè)表在數(shù)據(jù)庫中存在一個(gè)實(shí)際的關(guān)系定義。
A. BehaviorEditorPart B. AppearanceEditorPart C. PropertyGridEditorPart D. LayoutEditorPart
A. WebAuditEvent B. WebEventManager C. WebBaseEvent D. WebRequestEvent
A. 創(chuàng)建ContosoUI控件為Web控件庫。 B. 創(chuàng)建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.