what is Theme in Asp.net 2.0

Answer Posted / alb.shah

Master pages allow you to dictate the layout and common
content for the pages in your application using template
files with a .master extension. The Themes feature in
ASP.NET 2.0 allows you to dictate the appearance of
controls in your application using template files with
a .skin extension, and with style sheets. In this article,
we will examine the Themes feature in-depth.

What you ultimately can achieve with the combination of
these two features is the following:

-Easily build a web application with consistent layout and
appearance across all pages
-Easily change the layout and appearance of all pages just
by modifying a few template files
-Easily personalize an application at run time for a
specific user by letting the user chose their favorite look
from a number of appearance and layout options

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the differences between clr & cts?

627


What are the new web part controls in asp.net 2.0 ?

610


What are the event handlers that can be included in the Global.asax file?

684


What is true about application service provider?

575


How do you do Client-side validation in .Net?

681






What is latest version of asp.net mvc? : Asp.Net MVC

567


What are the server control tags in asp.net.?

710


How can you make sure that web api returns json data only?

613


Explain program to call the js function when the change is being made in the dropdown list made in asp.net mvc? : asp.net mvc

622


What methods are fired during the page load? Init()

631


What do you mean by authorization?

607


A Web Service Can Only Be Written In .net. Is it True??

713


What language is asp.net written in?

630


What are sql joins?

659


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

1818