Thanks Mark
> Can you suggest mistake I am making in below code,
I certainly can...
> <label id="lblHeader" class="ApplicationLabelStyle"
> style="font-weight:normal" >DC Application</label>
That's an HTMLControl, not a WebControl, so it won't run server-side. Change
it to an <asp:Label> WebControl, or add runat="server"...
> Label lblMasterHeader = (Label)Master.FindControl("lblHeader");
That will only work if you change the <label> to an <asp:Label> - otherwise
it will be an HTMLGenericControl, so the cast won't work...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
ABHIJIT B - 31 Jan 2008 20:02 GMT
Hi Mark,
Thanks Mark for helping me out.
Take Care
Abhijit B
> Thanks Mark
>
[quoted text clipped - 16 lines]
> Mark Rae
> ASP.NET MVPhttp://www.markrae.net