HtmlAnchor.RenderAttributes メソッド
アセンブリ: System.Web (system.web.dll 内)




カスタム サーバー コントロールの RenderAttributes メソッドをオーバーライドして、ツールヒントとして使用できる特定のタイトル テキストが HtmlAnchor コントロールに常に表示されるようにする方法を次のコード例に示します。
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %> <%@ Page Language="VB" AutoEventWireup="True" %> <HTML> <HEAD> <title>Custom HtmlAnchor - RenderAttributes - Visual Basic Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> Top of Page <<aspSample:CustomHtmlAnchorRenderAttributes id="HtmlAnchor1" runat="server" name="HtmlAnchor1">HtmlAnchor1</aspSample:CustomHtmlAnchorRenderAttributes>> <h3>Custom HtmlAnchor - RenderAttributes - Visual Basic Example</h3> <P>Place the mouse pointer over the HtmlAnchor1 tag (above). A Title attribute was added from within the RenderAttributes override method.</P> <P>Jump to <A href="#HtmlAnchor2">HtmlAnchor2</A> below.</P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P>Jump to <A href="#HtmlAnchor1">HtmlAnchor1</A> above.</P> <P> </P>Bottom of Page <<aspSample:CustomHtmlAnchorRenderAttributes id="HtmlAnchor2" runat="server" name="HtmlAnchor2">HtmlAnchor2</aspSample:CustomHtmlAnchorRenderAttributes>> </form> </body> </HTML>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls" Assembly="Samples.AspNet.CS" %> <%@ Page Language="C#" AutoEventWireup="True" %> <HTML> <HEAD> <title>Custom HtmlAnchor - RenderAttributes - C# Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> Top of Page <<aspSample:CustomHtmlAnchorRenderAttributes id="HtmlAnchor1" runat="server" name="HtmlAnchor1">HtmlAnchor1</aspSample:CustomHtmlAnchorRenderAttributes>> <h3>Custom HtmlAnchor - RenderAttributes - C# Example</h3> <P>Place the mouse pointer over the HtmlAnchor1 tag (above). A Title attribute was added from within the RenderAttributes override method.</P> <P>Jump to <A href="#HtmlAnchor2">HtmlAnchor2</A> below.</P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P>Jump to <A href="#HtmlAnchor1">HtmlAnchor1</A> above.</P> <P> </P>Bottom of Page <<aspSample:CustomHtmlAnchorRenderAttributes id="HtmlAnchor2" runat="server" name="HtmlAnchor2">HtmlAnchor2</aspSample:CustomHtmlAnchorRenderAttributes>> </form> </body> </HTML>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.JSL.Controls" Assembly="Samples.AspNet.JSL" %> <%@ Page Language="VJ#" AutoEventWireup="True" %> <HTML> <HEAD> <title>Custom HtmlAnchor - RenderAttributes - VJ# Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> Top of Page <<aspSample:CustomHtmlAnchorRenderAttributes id="HtmlAnchor1" runat="server" name="HtmlAnchor1">HtmlAnchor1</aspSample:CustomHtmlAnchorRenderAttributes>> <h3>Custom HtmlAnchor - RenderAttributes - VJ# Example</h3> <P>Place the cursor over the HtmlAnchor1 tag (above). A Title attribute was added from within the RenderAttributes override method.</P> <P>Jump to <A href="#HtmlAnchor2">HtmlAnchor2</A> below.</P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P> </P><P> </P><P> </P><P> </P> <P>Jump to <A href="#HtmlAnchor1">HtmlAnchor1</A> above.</P> <P> </P>Bottom of Page <<aspSample:CustomHtmlAnchorRenderAttributes id="HtmlAnchor2" runat="server" name="HtmlAnchor2">HtmlAnchor2</aspSample:CustomHtmlAnchorRenderAttributes>> </form> </body> </HTML>
Imports System.Web Imports System.Security.Permissions Namespace Samples.AspNet.VB.Controls <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _ Public NotInheritable Class CustomHtmlAnchorRenderAttributes Inherits System.Web.UI.HtmlControls.HtmlAnchor Protected Overrides Sub RenderAttributes(ByVal writer As System.Web.UI.HtmlTextWriter) ' Call the base class's RenderAttributes method. MyBase.RenderAttributes(writer) ' Write out the HtmlAnchor control's Title tag. writer.Write(" Title=""Text from RenderAttributes.""") End Sub End Class End Namespace
using System.Web; using System.Security.Permissions; namespace Samples.AspNet.CS.Controls { [AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)] public sealed class CustomHtmlAnchorRenderAttributes : System.Web.UI.HtmlControls.HtmlAnchor { protected override void RenderAttributes(System.Web.UI.HtmlTextWriter writer) { // Call the base class's RenderAttributes method. base.RenderAttributes(writer); // Write out the HtmlAnchor control's Title tag. writer.Write(" Title=\"Text from RenderAttributes.\""); } } }
package Samples.AspNet.JSL.Controls; public class CustomHtmlAnchorRenderAttributes extends System.Web.UI.HtmlControls.HtmlAnchor { protected void RenderAttributes(System.Web.UI.HtmlTextWriter writer) { // Call the base's RenderAttributes method. super.RenderAttributes(writer); // Write out Title tag writer.Write(" Title=\"Text from RenderAttributes.\""); } //RenderAttributes } //CustomHtmlAnchorRenderAttributes

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からHtmlAnchor.RenderAttributes メソッドを検索する場合は、下記のリンクをクリックしてください。

- HtmlAnchor.RenderAttributes メソッドのページへのリンク