HtmlTextWriterTag Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Specifica i tag HTML che possono essere passati al flusso di output di un oggetto HtmlTextWriter oppure Html32TextWriter.
public enum class HtmlTextWriterTag
public enum HtmlTextWriterTag
type HtmlTextWriterTag =
Public Enum HtmlTextWriterTag
- Ereditarietà
Campi
A | 1 | Elemento HTML |
Acronym | 2 | Elemento HTML |
Address | 3 | Elemento HTML |
Area | 4 | Elemento HTML |
B | 5 | Elemento HTML |
Base | 6 | Elemento HTML |
Basefont | 7 | Elemento HTML |
Bdo | 8 | Elemento HTML |
Bgsound | 9 | Elemento HTML |
Big | 10 | Elemento HTML |
Blockquote | 11 | Elemento HTML |
Body | 12 | Elemento HTML |
Br | 13 | Elemento HTML |
Button | 14 | Elemento HTML |
Caption | 15 | Elemento HTML |
Center | 16 | Elemento HTML |
Cite | 17 | Elemento HTML |
Code | 18 | Elemento HTML |
Col | 19 | Elemento HTML |
Colgroup | 20 | Elemento HTML |
Dd | 21 | Elemento HTML |
Del | 22 | Elemento HTML |
Dfn | 23 | Elemento HTML |
Dir | 24 | Elemento HTML |
Div | 25 | Elemento HTML |
Dl | 26 | Elemento HTML |
Dt | 27 | Elemento HTML |
Em | 28 | Elemento HTML |
Embed | 29 | Elemento HTML |
Fieldset | 30 | Elemento HTML |
Font | 31 | Elemento HTML |
Form | 32 | Elemento HTML |
Frame | 33 | Elemento HTML |
Frameset | 34 | Elemento HTML |
H1 | 35 | Elemento HTML |
H2 | 36 | Elemento HTML |
H3 | 37 | Elemento HTML |
H4 | 38 | Elemento HTML |
H5 | 39 | Elemento HTML |
H6 | 40 | Elemento HTML |
Head | 41 | Elemento HTML |
Hr | 42 | Elemento HTML |
Html | 43 | Elemento HTML |
I | 44 | Elemento HTML |
Iframe | 45 | Elemento HTML |
Img | 46 | Elemento HTML |
Input | 47 | Elemento HTML |
Ins | 48 | Elemento HTML |
Isindex | 49 | Elemento HTML |
Kbd | 50 | Elemento HTML |
Label | 51 | Elemento HTML |
Legend | 52 | Elemento HTML |
Li | 53 | Elemento HTML |
Link | 54 | Elemento HTML |
Map | 55 | Elemento HTML |
Marquee | 56 | Elemento HTML |
Menu | 57 | Elemento HTML |
Meta | 58 | Elemento HTML |
Nobr | 59 | Elemento HTML |
Noframes | 60 | Elemento HTML |
Noscript | 61 | Elemento HTML |
Object | 62 | Elemento HTML |
Ol | 63 | Elemento HTML |
Option | 64 | Elemento HTML |
P | 65 | Elemento HTML |
Param | 66 | Elemento HTML |
Pre | 67 | Elemento HTML |
Q | 68 | Elemento HTML |
Rt | 69 | Elemento DHTML |
Ruby | 70 | Elemento DHTML |
S | 71 | Elemento HTML |
Samp | 72 | Elemento HTML |
Script | 73 | Elemento HTML |
Select | 74 | Elemento HTML |
Small | 75 | Elemento HTML |
Span | 76 | Elemento HTML |
Strike | 77 | Elemento HTML |
Strong | 78 | Elemento HTML |
Style | 79 | Elemento HTML |
Sub | 80 | Elemento HTML |
Sup | 81 | Elemento HTML |
Table | 82 | Elemento HTML |
Tbody | 83 | Elemento HTML |
Td | 84 | Elemento HTML |
Textarea | 85 | Elemento HTML |
Tfoot | 86 | Elemento HTML |
Th | 87 | Elemento HTML |
Thead | 88 | Elemento HTML |
Title | 89 | Elemento HTML |
Tr | 90 | Elemento HTML |
Tt | 91 | Elemento HTML |
U | 92 | Elemento HTML |
Ul | 93 | Elemento HTML |
Unknown | 0 | La stringa passata come tag HTML non è riconosciuta. |
Var | 94 | Elemento HTML |
Wbr | 95 | Elemento HTML |
Xml | 96 | Elemento HTML |
Esempio
Nell'esempio seguente viene illustrato l'uso dell'enumerazione HtmlTextWriterTag
. Il campo viene usato durante il Img
rendering di un HtmlTextWriter oggetto denominato writer
.
// Control the encoding of attributes.
// Simple known values do not need encoding.
writer->AddAttribute( HtmlTextWriterAttribute::Alt, "Encoding, \"Required\"", true );
writer->AddAttribute( "myattribute", "No "encoding " required", false );
writer->RenderBeginTag( HtmlTextWriterTag::Img );
writer->RenderEndTag();
writer->WriteLine();
// Control the encoding of attributes.
// Simple known values do not need encoding.
writer.AddAttribute(HtmlTextWriterAttribute.Alt, "Encoding, \"Required\"", true);
writer.AddAttribute("myattribute", "No "encoding " required", false);
writer.RenderBeginTag(HtmlTextWriterTag.Img);
writer.RenderEndTag();
writer.WriteLine();
' Control the encoding of attributes.
' Simple known values do not need encoding.
writer.AddAttribute(HtmlTextWriterAttribute.Alt, "Encoding, ""Required""", True)
writer.AddAttribute("myattribute", "No "encoding " required", False)
writer.RenderBeginTag(HtmlTextWriterTag.Img)
writer.RenderEndTag()
writer.WriteLine()
Commenti
L'enumerazione HtmlTextWriterTag
consente al flusso di output di scrivere markup HTML, insieme ai controlli server HTML, in risposta a una richiesta Web.