| The Asp.net server control, which provides an alternative way of displaying text on web page, is |
| a) < asp:label > |
| b) < asp:listitem > |
| c) < asp:button > Tell me the answer |
Loading
| The Asp.net server control, which provides an alternative way of displaying text on web page, is |
| a) < asp:label > |
| b) < asp:listitem > |
| c) < asp:button > Tell me the answer |
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Mar 25, 2012, 11:40 PM
The answer for your question is
The Label is the ASP.Net server side control which is used to display the text in the web page.
when we declare this control
At the same time when it renders in the client browser it will be converted into HTML control if SPAN.
Name:
Because we do not have any control like Label in the HTML, hence browser can only understand about span. Thats why the web server send the response in the HTML span tag.
The other options are ListItem and button. The ListItem is used to set the options for the dropdown list control and button is command event to execute the server side event.
VulpesPosted Mar 25, 2012, 11:17 AM