Multiple choice .net asp

The Asp.net server control, which provides an alternative way of displaying text on web page, is

  1. < asp:label >

  2. < asp:listitem >

  3. < asp:button >

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The asp:Label control is specifically designed to display text on a web page in ASP.NET. Unlike standard HTML labels or other controls, the Label server control provides a clean way to add text programmatically with server-side functionality. ListItem is used in list controls, and Button is for click actions, not text display.