• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/17

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

17 Cards in this Set

  • Front
  • Back
What control is used to coordinate all Web Parts controls on a page?
WebPartManager
What property gets or sets the active display mode for a Web page that contains Web Parts controls?
WebPartManager.DisplayMode
What are the five standard display modes in the Web Parts control set?
1. Browse
2. Edit
3. Design
4. Catalog
5. Connect
What event is raised to indicate that the WebPartManager control has completed the process of switching from one display mode to another on a Web page?
WebPartManager.DisplayModeChanged
What event is raised to indicate that the WebPartManager control is in the process of switching from one display mode to another on a Web page?
WebPartManager.DisplayModeChanging
What property gets a reference to a WebPart or other server control that is currently selected for editing or for creating a connection with another control?
WebPartManager.SelectedWebPart
What event occurs after the selection of one WebPart control has changed and moved to another control on a Web page?
WebPartManager.SelectedWebPartChanged
What event occurs during the process of changing which WebPart or server control is currently selected on a Web page?
WebPartManager.SelectedWebPartChanging
What method can be used to add a WebPart control to a specified WebPartZone at a specified index?
WebPartManager.AddWebPart
What are the two ways user modifications can be scoped in a web parts page?
1. User
2. Shared
What step is required before a user can enter shared scope?
The user must be granted permissions in the web.config file.
What property can be used to query the supported display modes for a web parts page?
WebPartManager.SupportedDisplayModes
What property can be queried to determine whether the current user of a web parts page can enter shared scope?
WebPartManager.Personalization.CanEnterSharedScope
What method can be used to programmatically wrap a server control with a WebPart control?
WebPartManager.CreateWebPart
What attribute can be applied to a custom control property in order to persist personalization information?
PersonalizableAttribute
How can personalization be disabled for web parts?
Add the personalization-enabled attribute to the <asp:webpartmanager> element on a page, and set its value to false.
When you create a User Control that's specifically designed to be a Web Part, what interface should you implement to expose common web part properties?
IWebPart