Rank: Newbie Groups: Member
Joined: 1/31/2012 Posts: 8
|
Hi,
I added a menu to my Site.Master and it displays properly in the master page. When I return to the Design screen (VS 2010) I have an Error Creating Control - Menu1 where the menu should appear. The error message above (subject) is displayed.
I searched all forums but haven't found an answer.
Thank you for the help.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You would need to set CssClass on TopGroup. For example, this will not work:
Code: HTML/ASPX
<eo:Menu CssClass="some_css_class" ....>
....
</eo:Menu>
But this will work:
Code: HTML/ASPX
<eo:Menu ...>
....
<TopGroup Style-CssClass="some_css_class">
....
</TopGroup>
....
</eo:Menu>
Thanks
|