CheckBox.Render Method (HtmlTextWriter)
.NET Framework (current version)
This API supports the product infrastructure and is not intended to be used directly from your code.
Displays the CheckBox on the client.
Assembly: System.Web (in System.Web.dll)
Parameters
- writer
-
Type:
System.Web.UI.HtmlTextWriter
A System.Web.UI.HtmlTextWriter that contains the output stream to render on the client.
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %> <%@ Page language="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 CheckBox - Render - VB.NET Example</title> </head> <body> <form id="Form1" method="post" runat="server"> <h3>Custom CheckBox - Render - VB.NET Example</h3> <aspSample:CustomCheckBoxRender id="CheckBox1" runat="server" text="CheckBox1" /> </form> </body> </html>
Imports System.Web Imports System.Security.Permissions Namespace Samples.AspNet.VB.Controls <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _ Public NotInheritable Class CustomCheckBoxRender Inherits System.Web.UI.WebControls.CheckBox Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter) ' Call the base class's Render method. MyBase.Render(writer) ' Render a BR HTML tag writer.RenderBeginTag(System.Web.UI.HtmlTextWriterTag.Br) ' Create and render a new Image Web control. Dim image As New System.Web.UI.WebControls.Image image.ID = "Image1" image.ImageUrl = "image.jpg" image.AlternateText = "Image for CheckBox1." image.RenderControl(writer) End Sub End Class End Namespace
.NET Framework
Available since 1.1
Available since 1.1
Show: