473,756 Members | 1,818 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Do Masterpages have a PreInit event?

I have this code. The preinit never fires:

public partial class MasterPage : System.Web.UI.M asterPage
{
protected void Page_Load(objec t sender, EventArgs e)
{
if (!IsPostBack)
{
Label1.Text = Profile.FullNam e;
}
}
protected void Page_PreInit(ob ject sender, EventArgs e)
{
Response.Write( "HI");
Page.Theme = Profile.MyTheme ;
}
}

If I can't have a preinit in my masterpage, how can I dynamically set
the theme for all the pages based upon that theme? Thanks for any help.

Sep 28 '06 #1
1 1659
<ne***********@ gmail.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
If I can't have a preinit in my masterpage, how can I dynamically set
the theme for all the pages based upon that theme?
MasterPages don't have a PreInit method natively.

However, this is not a particularly difficult thing to achieve using
inheritance:
http://www.google.co.uk/search?sourc...+inherit+theme
Sep 28 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2418
by: nail | last post by:
Hi. Anyone knows how can I change the theme from my custom control. My custom control render a dropdownlist with the availables themes, getting in the Themes folder. But when I try to chane the Page.Theme property, I get this error: The 'Theme' property can only be set in or before the Page_PreInit event So, how can I set the Theme in or befor the Page_PreInit?
2
4092
by: Jonny | last post by:
I have a user control made up of a couple of web controls. I want to be able to set the SkinId on the web controls at run time. To do this I need to set the skin Id in or before the PreInit event. However, I can see no way of hooking in to any events within a user control prior to the OnInit event - which is too late for setting a SkinID. Any help greatly appreciated. Thanks, Jonny
9
14458
by: Marcelo Cabrera | last post by:
Hi, I have a user control that in turn creates a bunch of webcontrols dynamically and handles the events these webcontrols raise. It used to work fine on ASP .Net 1.1 but when compiled on 2.0 it does not. The problem is that the webcontrols get created on the OnLoad event of the usercontrol and the event handlers are assigned at the same time. I have to click twice on the controls for the events to be raised, the first time nothing...
2
7108
by: shapper | last post by:
Hello, I need to set, at runtime, MyLabel.SkinID="MySkinID". I know this must be done in Page PreInit event. However, MyLabel is in my Master Page. I tried to add the Page PreInit event on my master page but it is not available. Only in normal pages.
6
2864
by: Rahul | last post by:
this is my code in preinit event I have "hlinkAdd" as hyperlink web control and i am using a master page, and below code is of content page preinit event. Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInit If Request.QueryString("process") = "" Or Request.QueryString("process") = "Add" Then hlinkAdd.SkinID = "up" (error is thrown here Object reference not set to an instance of an object)...
0
1068
by: Rahul | last post by:
this is my code in preinit event I have "hlinkAdd" as hyperlink web control and i am using a master page, and below code is of content page preinit event. Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInit If Request.QueryString("process") = "" Or Request.QueryString("process") = "Add" Then hlinkAdd.SkinID = "up" (error is thrown here Object reference not set to an instance of an...
5
7974
by: WT | last post by:
Hello, It seems that Page_PreInit is not run automatically when AutoEventWireUp is set for the Page as it is for Page_Load or Page_Init. Somebody could confirm this missing point ? CS
3
2527
by: Morgan Cheng | last post by:
"Server.Transfer(Request.FilePath);" make server re-evaluate current page. In debugger, I found that though the page's OnPreInit is called, delegates attached in HttpModule is not executed. Why ASP.NET is designed in such a way? To make the page executed from scratch, I have to use Resposne.Redirect(Request.FilePath), but this will waste a networking roundtrip.
0
1191
by: shashank narayan | last post by:
what is preinit event in asp.net and why it is used?
0
9456
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10034
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9843
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8713
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6534
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5142
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3358
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2666
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.