1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

<asp:Literal>と<asp:Label>の違い

Posted at
比較項目 <asp:Literal> <asp:Label>
出力されるHTMLタグ なし(純粋な文字列のみ) <span> タグで囲まれる
軽さ ◎ 軽い(余計なタグなし) △ やや重い(HTMLタグあり)
使い方の目的 テキストだけを出力したいとき CSSや表示制御が必要なとき
スタイル設定 ✕ HTMLタグがないのでCSS指定できない CssClassStyle 属性が使える
サーバーサイドでのアクセス Literal.Text = "abc"; Label.Text = "abc";
ViewState の影響 少ない(表示だけ) ややある(コントロールとして扱う)
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?