RadioButtonList.Render(HtmlTextWriter) 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.
Affiche le contrôle RadioButtonList sur le client.
protected:
override void Render(System::Web::UI::HtmlTextWriter ^ writer);
protected public:
override void Render(System::Web::UI::HtmlTextWriter ^ writer);
protected override void Render (System.Web.UI.HtmlTextWriter writer);
protected internal override void Render (System.Web.UI.HtmlTextWriter writer);
override this.Render : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub Render (writer As HtmlTextWriter)
Protected Friend Overrides Sub Render (writer As HtmlTextWriter)
Paramètres
- writer
- HtmlTextWriter
HtmlTextWriter qui contient le flux de sortie pour la restitution sur le client.
Exemples
L’exemple de code suivant montre comment remplacer la Render méthode dans un contrôle serveur personnalisé afin que le RadioButtonList contrôle soit toujours affiché avec du texte descriptif.
<%@ Page Language="C#" AutoEventWireup="True" %>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls" Assembly="Samples.AspNet.CS" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Custom RadioButtonList - Render - C# Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<h3>Custom RadioButtonList - Render - C# Example</h3>
<aspSample:CustomRadioButtonListRender
id="Radiobuttonlist1"
runat="server"
RepeatColumns="2"
RepeatDirection="Horizontal">
<asp:ListItem Value="Item1">Item1</asp:ListItem>
<asp:ListItem Value="Item2">Item2</asp:ListItem>
<asp:ListItem Value="Item3">Item3</asp:ListItem>
<asp:ListItem Value="Item4">Item4</asp:ListItem>
</aspSample:CustomRadioButtonListRender>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head><title>Custom RadioButtonList - Render - VB.NET Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<h3>Custom RadioButtonList - Render - VB.NET Example</h3>
<aspSample:CustomRadioButtonListRender
id="Radiobuttonlist1" runat="server"
RepeatColumns="2" RepeatDirection="Horizontal">
<asp:ListItem Value="Item1">Item1</asp:ListItem>
<asp:ListItem Value="Item2">Item2</asp:ListItem>
<asp:ListItem Value="Item3">Item3</asp:ListItem>
<asp:ListItem Value="Item4">Item4</asp:ListItem>
</aspSample:CustomRadioButtonListRender>
</form>
</body>
</html>
using System.Web;
using System.Security.Permissions;
namespace Samples.AspNet.CS.Controls
{
[AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class CustomRadioButtonListRender : System.Web.UI.WebControls.RadioButtonList
{
protected override void Render(System.Web.UI.HtmlTextWriter writer)
{
// Call the base RenderContents method.
base.Render(writer);
// Append some text to the Image.
writer.Write("Experience Windows Server 2003 and Visual Studio® .NET 2003.");
}
}
}
Imports System.Web
Imports System.Security.Permissions
Namespace Samples.AspNet.VB.Controls
<AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _
Public NotInheritable Class CustomRadioButtonListRender
Inherits System.Web.UI.WebControls.RadioButtonList
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
' Call the base RenderContents method.
MyBase.Render(writer)
' Append some text to the Image.
writer.Write("Experience Windows Server 2003 and Visual Studio .NET 2003.")
End Sub
End Class
End Namespace
Remarques
Cette méthode est principalement utilisée par les développeurs de contrôles dans les contrôles personnalisés qui dérivent de la RadioButtonList classe .
L’implémentation Render de méthode pour un RadioButtonList contrôle initialise un RepeatInfo objet pour la liste et appelle la méthode, qui utilise à RenderRepeater son tour la RenderItem méthode pour afficher des éléments de liste de cases d’option individuels.