What is the difference between User Controls and Master Pages
Answer Posted / brijesh pandey
Master page have content place holder and in master page we
can't implement bussiness logic but in web user control we
can implement bussiness logic.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the use of global.asax file?
Can you explain composite pattern?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
Where the cookie value is stored?
How can we create pie chart in asp.net?
How asp.net mvc differs from asp.net web forms? : asp.net mvc
What are the authentication types in asp.net?
What is strong-typing versus weak-typing?
What is the difference between Classic ASP and ASP.Net?
How dataadapter.fill works?
What is page request in asp.net?
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 = "
What are type/key pairs in client script registration? Can there be 2 scripts with the same type/key pair name?
Explain the difference between singleton and single call?
How do you design a website with multilingual support in ASP.NET ?