XhtmlTextWriter.IsValidFormAttribute(String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Verifica se um atributo XHTML para garantir que ele pode ser renderizado na marca de abertura de um elemento <form>
.
public:
override bool IsValidFormAttribute(System::String ^ attributeName);
public override bool IsValidFormAttribute (string attributeName);
override this.IsValidFormAttribute : string -> bool
Public Overrides Function IsValidFormAttribute (attributeName As String) As Boolean
Parâmetros
- attributeName
- String
O nome de atributo a ser verificado.
Retornos
true
se o atributo puder ser aplicado a um elemento <form>
; caso contrário, false
.
Exemplos
O exemplo de código a seguir faz parte de um exemplo maior que cria um controle personalizado Label e um adaptador que renderiza o conteúdo do controle como XHTML.
Este exemplo de código demonstra como criar uma variável booliana nomeada attTest
e defini-la como o valor retornado que resulta da chamada do IsValidFormAttribute método com o valor do parâmetro "style". Se o IsValidFormAttribute método retornartrue
, os estilos associados ao controle serão renderizados usando o método e HtmlTextWriter.ExitStyle os HtmlTextWriter.EnterStyle métodos. Se o attTest
valor for false
, os estilos não serão renderizados. Em vez disso, a página exibe o texto do controle, um <br/>
elemento renderizado pelo WriteBreak método e uma cadeia de caracteres de texto informando ao usuário que o conteúdo XHTML do controle foi renderizado condicionalmente.
Este exemplo de código faz parte de um exemplo maior fornecido para a XhtmlTextWriter classe.
protected override void Render(HtmlTextWriter writer)
{
// Create an instance of the XhtmlTextWriter class,
// named w, and cast the HtmlTextWriter passed
// in the writer parameter to w.
XhtmlTextWriter w = new XhtmlTextWriter(writer);
// Create a string variable, named value, to hold
// the control's Text property value.
String value = Control.Text;
// Create a Boolean variable, named attTest,
// to test whether the Style attribute is
// valid in the page that the control is
// rendered to.
Boolean attTest = w.IsValidFormAttribute("style");
// Check whether attTest is true or false.
// If true, a style is applied to the XHTML
// content. If false, no style is applied.
if (attTest)
w.EnterStyle(Control.ControlStyle);
// Write the Text property value of the control,
// a <br> element, and a string. Consider encoding the value using WriteEncodedText.
w.Write(value);
w.WriteBreak();
w.Write("This control conditionally rendered its styles for XHTML.");
// Check whether attTest is true or false.
// If true, the XHTML style is closed.
// If false, nothing is rendered.
if (attTest)
w.ExitStyle(Control.ControlStyle);
}
' Override the Render method.
Protected Overrides Sub Render(ByVal writer As HtmlTextWriter)
' Create an instance of the XhtmlTextWriter class,
' named w, and cast the HtmlTextWriter passed
' in the writer parameter to w.
Dim w As XhtmlTextWriter = New XhtmlTextWriter(writer)
' Create a string variable, named value, to hold
' the control's Text property value.
Dim value As String = Control.Text
' Create a Boolean variable, named attTest,
' to test whether the Style attribute is
' valid in the page that the control is
' rendered to.
Dim attTest As Boolean = w.IsValidFormAttribute("style")
' Check whether attTest is true or false.
' If true, a style is applied to the XHTML
' content. If false, no style is applied.
If (attTest = True) Then
w.EnterStyle(Control.ControlStyle)
End If
' Write the Text property value of the control,
' a <br> element, and a string. Consider encoding the value using WriteEncodedText.
w.Write(value)
w.WriteBreak()
w.Write("This control conditionally rendered its styles for XHTML.")
' Check whether attTest is true or false.
' If true, the XHTML style is closed.
' If false, nothing is rendered.
If (attTest = True) Then
w.ExitStyle(Control.ControlStyle)
End If
End Sub
Comentários
Esse método é útil para renderizar condicionalmente um atributo dependendo se ele tem suporte pelo tipo de documento XHTML do dispositivo solicitante.