AttributeCollection.Remove(String) Méthode

Définition

Supprime un attribut de l'objet AttributeCollection d'un contrôle serveur.

public void Remove (string key);

Paramètres

key
String

Nom de l'attribut à supprimer.

Exemples

L’exemple suivant montre comment supprimer par programmation un attribut de l’objet d’un AttributeCollection contrôle serveur HTML.

<%@ 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 SubmitBtn_Click(object sender, EventArgs e)
    {
        FirstSelect.Attributes.Remove("Size");
    }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>AttributeCollection Example</title>
</head>

 <body>
    <form id="form1" runat="server">
    <div>
    Make a selection:
    <select id="FirstSelect"
            size="10"
            runat="server">
       <option>This</option>
       <option>That</option>
       <option>Other</option>
    </select>
    <br/><br/>

    <input type="submit" 
           id="SubmitBtn"
           value="Remove Size Attribute" 
           onserverclick="SubmitBtn_Click" 
           runat="server"/>
    </div>
 </form>
 </body>
 </html>

Remarques

Si l’objet AttributeCollection ne contient pas d’attribut qui a le spécifié key, la collection reste inchangée. Aucune exception n’est générée.

S’applique à

Produit Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Voir aussi