UpdatePanelRenderMode Enumeração

Definição

Representa as opções de renderização de layout possíveis para o conteúdo de um controle UpdatePanel em uma página.Represents the possible layout rendering options for the content of an UpdatePanel control on a page.

public enum class UpdatePanelRenderMode
public enum UpdatePanelRenderMode
type UpdatePanelRenderMode = 
Public Enum UpdatePanelRenderMode
Herança
UpdatePanelRenderMode

Campos

Block 0

Especifica que o conteúdo do controle UpdatePanel é renderizado dentro de uma elemento <div> HTML.Specifies that the content of the UpdatePanel control is rendered inside an HTML <div> element.

Inline 1

Especifica que o conteúdo do controle UpdatePanel é renderizado dentro de uma elemento <span> HTML.Specifies that the content of the UpdatePanel control is rendered inside an HTML <span> element.

Exemplos

O exemplo a seguir mostra como definir declarativamente a UpdatePanel.RenderMode propriedade como Inline .The following example shows how to declaratively set the UpdatePanel.RenderMode property to Inline. O UpdatePanel controle contém uma cadeia de caracteres que representa o número de postbacks da página.The UpdatePanel control contains a string that represents the number of postbacks from the page. O conteúdo é renderizado embutido com o texto ao redor.The contents are rendered inline with the surrounding text.


<%@ 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 int PostBackCount
    {
        get
        {
            return (int)(ViewState["PostBackCount"] ?? 0);
        }
        set
        {
            ViewState["PostBackCount"] = value;
        }
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        if (IsPostBack)
        {
            PostBackCount++;
        }
    }

</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>UpdatePanelRenderMode Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:ScriptManager ID="ScriptManager1"
                               runat="server" />
            The number of times you have clicked the button is
            <asp:UpdatePanel ID="UpdatePanel1"
                             UpdateMode="Conditional"
                             RenderMode="Inline"
                             runat="server">
                <ContentTemplate>
                    <%= PostBackCount.ToString() %>
                    times. Every time you click the count is incremented. The panel
                    containing the number of times you clicked is rendered in-line.
                    <br />
                    <asp:Button ID="Button1"
                                Text="Increment"
                                runat="server" />
                </ContentTemplate>
            </asp:UpdatePanel>
        </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 Property PostBackCount As Integer
        Get
            If Not ViewState("PostBackCount") Is Nothing Then
                Return ViewState("PostBackCount")
            Else : Return 0
            End If
        End Get
        Set(ByVal value As Integer)
            ViewState("PostBackCount") = Value
        End Set
    End Property
    
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        If IsPostBack Then
            PostBackCount += 1
        End If
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>UpdatePanelRenderMode Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:ScriptManager ID="ScriptManager1"
                               runat="server" />
            The number of times you have clicked the button is
            <asp:UpdatePanel ID="UpdatePanel1"
                             RenderMode="Inline"
                             runat="server">
                <ContentTemplate>
                    <%= PostBackCount.ToString() %>
                    times. Every time you click the count is incremented. The panel
                    containing the number of times you clicked is rendered in-line.
                    <br />
                    <asp:Button ID="Button1"
                                Text="Increment"
                                runat="server" />
                </ContentTemplate>
            </asp:UpdatePanel>
        </div>
    </form>
</body>
</html>

Comentários

A UpdatePanelRenderMode enumeração define quais elementos HTML usar para colocar o conteúdo do UpdatePanel controle.The UpdatePanelRenderMode enumeration defines which HTML elements to use to enclose the content of the UpdatePanel control. A UpdatePanel.RenderMode propriedade deve ser um dos valores da UpdatePanelRenderMode enumeração.The UpdatePanel.RenderMode property must be one of the values of the UpdatePanelRenderMode enumeration. O conteúdo de um UpdatePanel controle pode ser renderizado dentro de um <div> elemento HTML ou de um <span> elemento.The content of an UpdatePanel control can be rendered inside either an HTML <div> element or a <span> element.

O RenderMode valor da propriedade padrão é Block .The default RenderMode property value is Block.

Aplica-se a

Confira também