Udostępnij za pośrednictwem


WebPartManager.DeleteWebPart(WebPart) Metoda

Definicja

Trwale usuwa dynamiczne wystąpienie kontrolki WebPart ze strony sieci Web.

public:
 void DeleteWebPart(System::Web::UI::WebControls::WebParts::WebPart ^ webPart);
public void DeleteWebPart (System.Web.UI.WebControls.WebParts.WebPart webPart);
member this.DeleteWebPart : System.Web.UI.WebControls.WebParts.WebPart -> unit
Public Sub DeleteWebPart (webPart As WebPart)

Parametry

webPart
WebPart

Kontrolka serwera, która ma zostać usunięta.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać DeleteWebPart metody . Po pierwszym kliknięciu przycisku Dodaj kalendarz kod w procedurze obsługi zdarzeń tworzy kontrolkę Calendar i dodaje go do strefy jako GenericWebPart obiektu. Ponieważ kontrolka jest dodawana programowo, jest to kontrolka dynamiczna i dlatego można ją usunąć. Gdy użytkownik kliknie przycisk Usuń kalendarz , kod gwarantuje, że kontrolka istnieje, a następnie usunie ją przez wywołanie DeleteWebPart metody .

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

  protected void Button2_Click(object sender, EventArgs e)
  {
    WebPartManager mgr = WebPartManager1;
    Calendar cal = new Calendar();
    cal.ID = "cal1";
    GenericWebPart calWebPart = mgr.CreateWebPart(cal);
    mgr.AddWebPart(calWebPart, WebPartZone1, 1);
  }

  protected void Button1_Click(object sender, EventArgs e)
  {
    if (WebPartZone1.WebParts.Count > 1)
    {
      WebPart cal = WebPartZone1.WebParts[1];
      if (cal.Controls[0].GetType().Name == "Calendar" 
        && cal != null)
        WebPartManager1.DeleteWebPart(cal);
    }

  }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Adding a Server Control</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <asp:WebPartManager ID="WebPartManager1" 
        runat="server" />
      <asp:WebPartZone ID="WebPartZone1" runat="server">
        <ZoneTemplate>
          <asp:BulletedList  
            DisplayMode="HyperLink" 
            ID="BulletedList1" 
            runat="server"
            Title="My Links">
            <asp:ListItem Value="http://www.microsoft.com">
            Microsoft
            </asp:ListItem>
            <asp:ListItem Value="http://www.msn.com">
            MSN
            </asp:ListItem>
            <asp:ListItem Value="http://www.contoso.com">
            Contoso Corp.
            </asp:ListItem>
          </asp:BulletedList>
        </ZoneTemplate>
      </asp:WebPartZone>
      <asp:Button ID="Button1" runat="server" 
        Text="Delete Calendar" 
        OnClick="Button1_Click" />
      <asp:Button ID="Button2" runat="server" 
        Text="Add Calendar" 
        OnClick="Button2_Click" />
    </div>
    </form>
</body>
</html>
<%@ Page Language="vb" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

  Protected Sub Button2_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs)
    Dim mgr As WebPartManager = WebPartManager1
    Dim cal As New Calendar()
    cal.ID = "cal1"
    Dim calWebPart As GenericWebPart = mgr.CreateWebPart(cal)
    mgr.AddWebPart(calWebPart, WebPartZone1, 1)
  End Sub

  Protected Sub Button1_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs)

    If WebPartZone1.WebParts.Count > 1 Then
      Dim cal As WebPart = WebPartZone1.WebParts(1)
      If cal.Controls(0).GetType().Name = "Calendar" AndAlso _
        cal IsNot Nothing Then
        WebPartManager1.DeleteWebPart(cal)
      End If
    End If
  End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Adding a Server Control</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <asp:WebPartManager ID="WebPartManager1" 
        runat="server" />
      <asp:WebPartZone ID="WebPartZone1" runat="server">
        <ZoneTemplate>
          <asp:BulletedList  
            DisplayMode="HyperLink" 
            ID="BulletedList1" 
            runat="server"
            Title="My Links">
            <asp:ListItem Value="http://www.microsoft.com">
            Microsoft
            </asp:ListItem>
            <asp:ListItem Value="http://www.msn.com">
            MSN
            </asp:ListItem>
            <asp:ListItem Value="http://www.contoso.com">
            Contoso Corp.
            </asp:ListItem>
          </asp:BulletedList>
        </ZoneTemplate>
      </asp:WebPartZone>
      <asp:Button ID="Button1" runat="server" 
        Text="Delete Calendar" 
        OnClick="Button1_Click" />
      <asp:Button ID="Button2" runat="server" 
        Text="Add Calendar" 
        OnClick="Button2_Click" />
    </div>
    </form>
</body>
</html>

Uwagi

Metoda DeleteWebPart trwale usuwa kontrolkę reprezentowaną przez webPart parametr ze strony. W przeciwieństwie do zamkniętej kontrolki, która jest dodawana do kontrolki PageCatalogPart i można jej dodać z powrotem do strony, do strony nigdy nie można dodać usuniętego wystąpienia kontrolki.

Uwaga

Zgodnie z implementacją zestawu kontrolek składników Web Part możliwość usunięcia kontrolki dynamicznej WebPart zależy od użytkownika i zakresu personalizacji, w którym kontrolka została dodana do strony. Jeśli kontrolka jest dodawana, gdy strona znajduje się w zakresie udostępnionym (przez użytkownika, który ma uprawnienia), nie można usunąć kontrolki przez poszczególnych użytkowników, gdy strona znajduje się w zakresie użytkownika.

Można usunąć tylko dynamiczne kontrolki. Kontrolki dynamiczne są dodawane do strony programowo lub przez użytkowników dodających kontrolki z wykazu. Kontrolki statyczne są dodawane do strony deklaratywnej w formacie znaczników lub trwałości. Ponieważ tagi deklaratywne są trwale obecne w znacznikach, statyczne kontrolki nigdy nie mogą być usuwane, ale można je zamknąć i ponownie otworzyć.

Dotyczy

Zobacz też