W
_Who
In the .master file I have:
<body runat="server" id="MainBody">
I need to add a background attribute to MainBody in the .master.vb file.
But there it tells me that MainBody is not declared.
Now I'll try anything to see if I can get a hint of how to proceed. So I
try:
Dim zz As Control = Master.FindControl("MainBody")
But Master's value is nothing
I try
Dim zz As Control = FindControl("MainBody")
Seems to find it but Control does not have a background attribute to set.
So now I'm trying this NG.
Any suggestions as to how I can add that attribute???
Thanks
ps I know background is deprecated
<body runat="server" id="MainBody">
I need to add a background attribute to MainBody in the .master.vb file.
But there it tells me that MainBody is not declared.
Now I'll try anything to see if I can get a hint of how to proceed. So I
try:
Dim zz As Control = Master.FindControl("MainBody")
But Master's value is nothing
I try
Dim zz As Control = FindControl("MainBody")
Seems to find it but Control does not have a background attribute to set.
So now I'm trying this NG.
Any suggestions as to how I can add that attribute???
Thanks
ps I know background is deprecated