You have to do some things
add runat="server" and an ID to the div tag so that .net can 'see' it
<div runat="server" ID="myDiv"> .... </div>
and either
- expose it on the Master Page so you can access directly:
public Control MyDiv
{get { return myDiv; } }
or try to find it using FindControl
- Master.FindControl("myDiv")...
But the biggie is to give it an ID and the runat...
Hope that helps,
m
give me suggestions for what to blog...
http://www.myfriedmind.com/techblog -> thx
Mark as "Answered" if this solves that wee old problem...