Calling Master Page methods directly from Content Page inline code

Can it be done?

( This is a related issue to my recent post...
http://groups.google.com/group/microsoft.public.dotnet.frame work.aspnet/browse_thread/thread/a229a66642bedfaf/870614ae25 7ae699
...but with a twist. )

Here's the scenario:

Method in MyMaster.master.cs:
public void Logout(object sender, EventArgs e)
{
Response.Write("You are logged out!");
}


Code in MyContent.aspx:
<% [at] MasterType VirtualPath="~/MyMaster.master" %>
...
<asp:Button ID="btnLogout" runat="server" Text="Logout"
OnClick="Master.Logout" />


Browse to the page, and in big red letters:
Server Application Unavailable


Application log in Event Viewer shows:
Event Type: Error
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1000
Description: aspnet_wp.exe (PID: 3368) stopped unexpectedly.

This happens every time that 'Master.' is used directly in the .aspx
code.

A workaround is to call Master.Logout from within a MyContent.aspx.cs
method, then reference the latter method in MyContent.aspx.

MyContent.aspx *is* seeing the method in MyMaster.master.cs, because
it will throw errors for certain things like leaving out the overloads
in the Logout method declaration.

Is there a correct syntax for calling a Master Page method directly
from inline code, or should it just not be done?

Thanks.
DevNll2002 [ Fr, 04 April 2008 00:52 ] [ ID #1935362 ]

Re: Calling Master Page methods directly from Content Page inline

On Apr 3, 5:52=A0pm, DevNll2... [at] gmail.com wrote:
> Can it be done?

Answer:
Yes it can!

The method has to be set in code, though:

btnLogout.Click +=3D new EventHandler(Master.Logout);
DevNll2002 [ Mi, 09 April 2008 02:51 ] [ ID #1938579 ]
Microsoft » microsoft.public.dotnet.framework.aspnet » Calling Master Page methods directly from Content Page inline code

Vorheriges Thema: Dropdown menu hiding behind content
Nächstes Thema: LogInView Password Recovery and Smtp