What are Master pages? How to define a Master page?

Answer Posted / bachi

ASP.NET master pages allow you to create a consistent layout
for the pages in your application. A single master page
defines the look and feel and standard behavior that you
want for all of the pages (or a group of pages) in your
application. You can then create individual content pages
that contain the content you want to display. When users
request the content pages, they merge with the master page
to produce output that combines the layout of the master
page with the content from the content page.

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is application in asp net?

491


What are the major built-in objects in ASP.NET?

565


Can we have 2 web config files?

534


Are there resources online with tips on asp to asp.net conversions?

538


What are early binding and late binding.

560






Can you explain the basic use of dataview?

620


Is asp.net outdated?

524


How ASP and ASP.NET page works? Explain about asp.net page life cycle?

577


Write some code using interfaces, virtual methods, and an abstract class`

1575


what is meant by sitemapnode ?

1493


Explain about asp.net 2.0 themes?

549


What is the use of data set in asp.net?

479


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 = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1723


What is owin authentication?

512


Which is better session or viewstate?

500