I have got a masterpage with a picture on it, I attached the image map control with the picture.. but when i navigate to a child page.. the picture is not triggered. Is there a way to put an image map control on the masterpage and activate it through the child page?
<asp:ImageMap ID="ImageMap1" runat="server" ImageUrl="~/header.png"
HotSpotMode="Navigate" onclick="ImageMap1_Click" Target="~/AllQuestions.aspx">
<asp:RectangleHotSpot Bottom="1000" HotSpotMode="Navigate" Left="1000"
NavigateUrl="~/AllQuestions.aspx" Right="500" Top="500" />
</asp:ImageMap>
It isnt clickable in the child page