A.AppearanceEditorPart B.BehaviorEditorPart C.PropertyGridEditorPart D.LayoutEditorPart
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. Set Page.MasterPageFile in the Page's Page_Init event. B. Set Page.MasterPageFile in the Page's OnInit override. C. Set Page.MasterPageFile in the Page's Page_Load event. D. Set Page.MasterPageFile in the Page's Page_PreInit event.
A.PhoneNumberTextBox.Text = Master.PhoneNumber; B.PhoneNumberTextBox.Text = this.PhoneNumber; C.PhoneNumberTextBox.Text = Content.PhoneNumber;
A. Modify the application settings by using the Web Site Administration Tool. B. Modify the application settings by using the Visual Studio property page editor for the project. C. Modify the application settings by using the resource editor. D. Modify the application settings by using the Visual Studio start options editor.