Thanks Micheal,
I followed the approach you gave
that perfectly fitted the bill
i had some problems with my previous approach
I got some more info from this link as well
http://www.odetocode.com/Articles/450.aspx
Thank you very much to all for your help and time
wrote:
> Better yet so you don't have to cast your master page each time for
> access in your pages' code behinds, add the following to the .aspx
> file. (You can also set in the web config for all pages in a site, but
> I do not like to do this in case you wish for a page not to use the
> master.)
>
> <%@ MasterType TypeName="Base_master" %>
>
> where Base_master is the name of the master page code behind you are
> trying to reference.
>
> You can then access public properties and methods from the master in
> the page using it.
>
> In the master:
>
> string m_JobTitle;
> public string Job
> {
> get { return m_JobTitle; }
> set { m_JobTitle= value;}
> }
>
> In your .aspx.cs
>
> Master.JobTitle= "Professional Hack";
>
> Regards
> Coleman