Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - Do Masterpages have a PreInit event?

 
Thread Tools Search this Thread
Old 09-28-2006, 06:01 PM   #1
Default Do Masterpages have a PreInit event?


I have this code. The preinit never fires:

public partial class MasterPage : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Label1.Text = Profile.FullName;
}
}
protected void Page_PreInit(object 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.



needin4mation@gmail.com
  Reply With Quote
Old 09-28-2006, 06:23 PM   #2
Mark Rae
 
Posts: n/a
Default Re: Do Masterpages have a PreInit event?
<> wrote in message
news: ups.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




Mark Rae
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Load .aspx page on another frame from TreeView Event Sangeeth Software 0 06-25-2009 09:20 AM
master page does not change due to preinit event not firing franchise63 General Help Related Topics 0 02-13-2008 09:18 AM
RIP HD-DVD? - HD-DVD CES Event Canceled Air Raid DVD Video 0 01-05-2008 03:06 AM
How do find out if a button was clicked before the textchanged event of textbox fires Jack General Help Related Topics 0 10-27-2006 10:19 AM
SUPER BOWL GALA EVENT, tickets available TheLeiterSideYGB DVD Video 1 01-06-2004 11:55 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46