When an ASP.NET server control is added to a web form,
Visual Studio .NET adds one item to the class for the form.
What item is added?
a) The event registration.
b) A protected class member for the control.
c) A default event handler for the click event.
d) A default class that inherits from the control?s base class.
Answer Posted / farah
b) A protected class member for the control
| Is This Answer Correct ? | 42 Yes | 2 No |
Post New Answer View All Answers
What is asp.net introduction?
What is the difference between asp.net and mvc?
Why cyclomatic complexity is important?
How is mvc different from asp.net? : Asp.Net MVC
List the events in page life cycle.
what is a .xap file? Explain with an example.
What is hidden field in asp.net?
What are the uses of list view control in Asp.net?
What are the advantages and limitations of query string?
What is the equivalent of date() and time() in asp.net?
How would you enable impersonation in the web.config file?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What is rending process in ASP.NET?
Explain the difference between Web Garden and Web Farm?
What is _dopostback in asp net?