Control.IsLiteralContent Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si le contrôle serveur ne détient qu'un contenu littéral.
protected:
bool IsLiteralContent();
protected bool IsLiteralContent ();
member this.IsLiteralContent : unit -> bool
Protected Function IsLiteralContent () As Boolean
Retours
true
si le contrôle serveur est uniquement composé de contenu littéral ; sinon, false
.
Exemples
L’exemple suivant vérifie si la page qui contient les contrôles serveur a été réinitative. Si c’est le cas, il appelle la IsLiteralContent méthode pour déterminer si le contrôle contient uniquement du contenu littéral ou s’il s’agit d’un contrôle parent pour d’autres contrôles serveur. S’il contient uniquement du contenu littéral, la UniqueID propriété du LiteralControl qui représente ce contenu est écrite dans la réponse.
// Override the OnLoad method to check if the
// page that uses this control has posted back.
// If so, check whether this controls contains
// only literal content, and if it does,
// it gets the UniqueID property and writes it
// to the page. Otherwise, it writes a message
// that the control contains more than literal content.
protected override void OnLoad(EventArgs e)
{
if (Page.IsPostBack)
{
String s;
if (this.IsLiteralContent())
{
s = Controls[0].UniqueID;
Context.Response.Write(s);
}
else
{
Context.Response.Write(
"The control contains more than literal content.");
}
}
}
' Override the OnLoad method to check if the
' page that uses this control has posted back.
' If so, check whether this controls contains
' only literal content, and if it does,
' it gets the UniqueID property and writes it
' to the page. Otherwise, it writes a message
' that the control contains more than literal content.
Overrides Protected Sub OnLoad(ByVal e As EventArgs)
If Page.IsPostBack = True Then
Dim s As String
If Me.IsLiteralContent() = True Then
s = Controls(0).UniqueID
Context.Response.Write(s)
Else
Context.Response.Write( _
"The control contains more than literal content.")
End If
End If
End Sub
Remarques
Lorsque cette méthode retourne true
, la collection du contrôle serveur contient un seul contrôle littéral.