Almost there but...
I created a BaseMaster class that inherits from System.Web.UI.MasterPage And
placed my Public Property there:
Public Class BaseMaster : Inherits System.Web.UI.MasterPage
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load
'Make the error table row invisible
CType(Page.Master.FindControl("rowError"), HtmlTableRow).Visible = False
End Sub
Public Property ErrorMessage() As String
Get
Return CType(Page.Master.FindControl("txtError"),
HtmlGenericControl).InnerText
End Get
Set(ByVal value As String)
Trace.Write("BaseMaster.ErrorMessage.Set")
CType(Page.Master.FindControl("txtError"),
HtmlGenericControl).InnerText = value
CType(Page.Master.FindControl("rowError"), HtmlTableRow).Visible =
True
End Set
End Property
End Class
In my Master Page I now inherit from BaseMaster and I CAN now access the
Property from my content pages:
CType(Page.Master, BaseMaster).ErrorMessage = "Some Error Message."
BUT...
All of my Pages inherit from a BasePage class that contains a Page_Error handler
from where I would like to access the MasterPage property when an error occurs:
Public Class BasePage : Inherits System.Web.UI.Page
Private Sub Page_Error(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyBase.Error
CType(Page.Master, BaseMaster).ErrorMessage =
Server.GetLastError.Message
End Sub
End Class
The problem now is that when I generate an error on the content page the Page
Error handler in my BasePage class fires and it sets the public property in my
BaseMaster but nothing is displayed on the page (the URL is correct for the
content page) the only HTML rendered is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
There is no Master and no Content HTML. I'm missing a call to something
somewhere.
On Fri, 9 Nov 2007 03:03:01 -0800, Jay Pondy <jp****@AugustaNewsprint.com>
wrote:
>I am trying to access a Public property on a Master Page from a Base Page.
On the content pages I have the MasterType Directive set up as follows:
<%@ MasterType virtualpath="~/Master.master" %>
On the Master Page I have a public property exposed:
Public Property ErrorMessage() As String
Get
Return txtError.InnerText
End Get
Set(ByVal value As String)
txtError.InnerText = value
rowError.Visible = True
End Set
End Property
From the Content Page I can access the property:
Me.Master.ErrorMessage = "Some Error Message."
If I try and access the Master Page Property from an inherited Base Page with:
Me.Master.ErrorMessage = "Some Error Message."
the IDE highlights the error with:
ErrorMessage is not a member of System.Web.UI.MasterPage
Is there some way I can cast the Base Page Master property to the strongly
typed Master Page and access the ErrorMessage property?