What is the difference between User Controls and Master Pages
Answer Posted / shaik mujahid
Master page inherits all child pages in contentplace holder
and usercontrol can be placed in master page
user control is a control which must be placed in a page to
perform specific task
| Is This Answer Correct ? | 15 Yes | 2 No |
Post New Answer View All Answers
What is the main differences between asp and asp.net?
What are directives in asp.net?
Can we make activex dll also ti execute in some process as that of client ? How can we do?
Which is faster viewdata or viewbag?
What are the different method of navigation in asp.net?
What is mvc in angular?
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 are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?
What is ascx?
How can we use Web API with ASP.NET Web Form?
What are server side controls?
What does asp in asp.net stand for?
What is difference between Lambda Expression and LINQ in ASP.NET?
Explain Life cycle of ASP.NET page when a request is made.
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)