What is difference between masterpage and user control, what
is the objective of master page when we had user control in
.NET 1.1 version
Answer Posted / chinnu
Master page provides common structure and interface element
for your web site. MasterPage act as a template and merging
container for pages .
User Control just like other control, you can use it
anywhere on your page and as many as you want.
| Is This Answer Correct ? | 22 Yes | 7 No |
Post New Answer View All Answers
Which is the best institute to learn Microsoft Technologies and the faculty if you Know?
Is it possible to change the index of primary key on table?
What are the different session state management options available in asp.net?
What do you mean by role-based security?
What is cookies cache and session?
What is the sequence in which ASP.NET events are processed?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
How many types of validation are there?
What is difference between Fragment Caching and Page Caching in ASP.NET?
Define xmlreader class.
What are the different types of events are occured when a client requests an ASP.NET page from IIS server?
What is the default Orientation property in a Menu control?
How can we access static variable?
What are the event handlers that can be included in the Global.asax file?
What are the benefits of view state?