HtmlTextWriterTag 枚举

定义

指定可传递到 HtmlTextWriterHtml32TextWriter 对象输出流的 HTML 标记。

public enum class HtmlTextWriterTag
public enum HtmlTextWriterTag
type HtmlTextWriterTag = 
Public Enum HtmlTextWriterTag
继承
HtmlTextWriterTag

字段

A 1

HTML a 元素。

Acronym 2

HTML acronym 元素。

Address 3

HTML address 元素。

Area 4

HTML area 元素。

B 5

HTML b 元素。

Base 6

HTML base 元素。

Basefont 7

HTML basefont 元素。

Bdo 8

HTML bdo 元素。

Bgsound 9

HTML bgsound 元素。

Big 10

HTML big 元素。

Blockquote 11

HTML blockquote 元素。

Body 12

HTML body 元素。

Br 13

HTML br 元素。

Button 14

HTML button 元素。

Caption 15

HTML caption 元素。

Center 16

HTML center 元素。

Cite 17

HTML cite 元素。

Code 18

HTML code 元素。

Col 19

HTML col 元素。

Colgroup 20

HTML colgroup 元素。

Dd 21

HTML dd 元素。

Del 22

HTML del 元素。

Dfn 23

HTML dfn 元素。

Dir 24

HTML dir 元素。

Div 25

HTML div 元素。

Dl 26

HTML dl 元素。

Dt 27

HTML dt 元素。

Em 28

HTML em 元素。

Embed 29

HTML embed 元素。

Fieldset 30

HTML fieldset 元素。

Font 31

HTML font 元素。

Form 32

HTML form 元素。

Frame 33

HTML frame 元素。

Frameset 34

HTML frameset 元素。

H1 35

HTML H1 元素。

H2 36

HTML H2 元素。

H3 37

HTML H3 元素。

H4 38

HTML H4 元素。

H5 39

HTML H5 元素。

H6 40

HTML H6 元素。

Head 41

HTML head 元素。

Hr 42

HTML hr 元素。

Html 43

HTML html 元素。

I 44

HTML i 元素。

Iframe 45

HTML iframe 元素。

Img 46

HTML img 元素。

Input 47

HTML input 元素。

Ins 48

HTML ins 元素。

Isindex 49

HTML isindex 元素。

Kbd 50

HTML kbd 元素。

Label 51

HTML label 元素。

Legend 52

HTML legend 元素。

Li 53

HTML li 元素。

54

HTML link 元素。

Map 55

HTML map 元素。

Marquee 56

HTML marquee 元素。

Menu 57

HTML menu 元素。

Meta 58

HTML meta 元素。

Nobr 59

HTML nobr 元素。

Noframes 60

HTML noframes 元素。

Noscript 61

HTML noscript 元素。

Object 62

HTML object 元素。

Ol 63

HTML ol 元素。

Option 64

HTML option 元素。

P 65

HTML p 元素。

Param 66

HTML param 元素。

Pre 67

HTML pre 元素。

Q 68

HTML q 元素。

Rt 69

DHTML rt 元素,它指定 ruby 元素的文本。

Ruby 70

DHTML ruby 元素。

S 71

HTML s 元素。

Samp 72

HTML samp 元素。

Script 73

HTML script 元素。

Select 74

HTML select 元素。

Small 75

HTML small 元素。

Span 76

HTML span 元素。

Strike 77

HTML strike 元素。

Strong 78

HTML strong 元素。

Style 79

HTML style 元素。

Sub 80

HTML sub 元素。

Sup 81

HTML sup 元素。

Table 82

HTML table 元素。

Tbody 83

HTML tbody 元素。

Td 84

HTML td 元素。

Textarea 85

HTML textarea 元素。

Tfoot 86

HTML tfoot 元素。

Th 87

HTML th 元素。

Thead 88

HTML thead 元素。

Title 89

HTML title 元素。

Tr 90

HTML tr 元素。

Tt 91

HTML tt 元素。

U 92

HTML u 元素。

Ul 93

HTML ul 元素。

Unknown 0

不识别作为 HTML 标记传递的字符串。

Var 94

HTML var 元素。

Wbr 95

HTML wbr 元素。

Xml 96

HTML xml 元素。

示例

以下示例演示了枚举的使用 HtmlTextWriterTag 。 字段 Img 在呈现 HtmlTextWriter 命名 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()

注解

枚举 HtmlTextWriterTag 允许输出流编写 HTML 标记以及 HTML 服务器控件,以响应 Web 请求。

适用于

另请参阅