.NET Tutorials, Forums, Interview Questions And Answers
HomeTutorialArticlesForumInterview QuestionCode SnippetsTechnology NewsFun Zone Poll Certification Search
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Home >> Code Snippets >> ASP.NET Controls >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

Disable Theme in a Page in asp.net

Posted By :Amit Mehra      Posted Date :02/07/2009   Points :10   Category: ASP.NET Controls    URL: http://www.dotnetspark.com
    


Disable Theme in a Page in asp.net.

Below code example will guide you to disable Theme in a asp.net web page. As we all know that Theme is the concept available in ASP.Net 2.0 onwards. But sometime there is a situation where we have multiple theme or we have to disbale Theme from a perticular Web Page.

Here is the solution to disable theme.

There are three ways to do it and you have use EnableTheming Property
which accept Boolean value to enable or disable theme.

Which ever web page you want to disable theme in that page go the .aspx file and

1st Way) Add EnableTheming ="false" in .aspx Page directive.

example:
<%@ Page Language="C#" AutoEventWireup="true" EnableTheming="false" CodeFile="TestPage.aspx.cs" Inherits="TestPage" %>

2nd Way)  Add Theme ="" in .aspx page Directive

Sample:

<%@ Page Language="C#" AutoEventWireup="true" Theme="" CodeFile="TestPage.aspx.cs" Inherits="TestPage" %>

3rd Way) Add This line of code in you Page_PreInit event in this we have used Theme Property of the page. Using code you can also disable theme like this

protected void Page_PreInit(object sender, EventArgs e)
{
this.Theme = ""; //Set the theme propery to empty string
}

or

protected void Page_PreInit(object sender, EventArgs e)
{
Page.Theme =
"";//Set the page theme property to Empty string
}

Similarly if you want to set or change the other theme in different or other webpage you can add the theme in above similar fashion by adding the theme name.

Hope this will help all who want to disable or hide theme from a asp.net web page.


Featured Articles


Best Practices No 5: - Detecting .NET application memory leaks
Memory leaks in .NET application have always being programmer's nightmare. Memory leaks are biggest problems when it comes to production servers. Productions servers normally need to run with least down time. Memory leaks grow slowly and after sometime they bring down the server by consuming huge chunks of memory. Maximum time people reboot the system, make it work temporarily and send a sorry note to the customer for the downtime. ... Read More
.NET Best Practice No: 1:- Detecting High Memory consuming functions in .NET code
One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides. Ok, said and done one of the biggest task is to understand which function, assembly or class has consumed how much memory. In this tutorial we will see how we can find which functions consume how much memory. This article discusses the best practices involved using CLR profiler for studying memory allocation.... Read More
How to improve your LINQ query performance by 5 X times ?
LINQ has been criticized by many early adopters for its performance issues. Well if you are just going to drag and drop using DBML code generator I am sure you will land up in to mess. Try doing this make a simple LINQ to SQL project using DBML and see your SQL profiler, I am sure you will never like to touch DBML code generator again. ... Read More
Responses
Author: Ramesh         Company URL:
Posted Date: 05/07/2009

Nice Description and simple code ..Thanks Amit..Could you also write some code to create theme so that it will helpful to .NET Beginners.

Regards
Ramesh
Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend