|
|
 |
BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3
 | This is the forum to discuss the Wrox book Beginning ASP.NET 3.5: In C# and VB by Imar Spaanjaars; ISBN: 9780470187593 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

March 23rd, 2009, 12:18 PM
|
|
Registered User
|
|
Join Date: Mar 2009
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
IE8 and the Menu
Hi
I am using (non-Beta) Internet Explorer 8 and can not see the menu subitems - they just display as white boxes as if there was no CSS style applied. This also happens on the www.planetwrox.com website. If I turn on compatability mode then the menu system works as intended. Any ideas?
|

March 23rd, 2009, 12:40 PM
|
|
Friend of Wrox
|
|
Join Date: Sep 2005
Location: London, , United Kingdom.
Posts: 151
Thanks: 2
Thanked 32 Times in 32 Posts
|
|
There's been a few posts raised on this around the web - just google "ie8 asp.net menu". There are a few workarounds on an MSDN blog at http://blogs.msdn.com/giorgio/archiv...ite-issue.aspx
Phil
|

March 23rd, 2009, 12:43 PM
|
 |
Wrox Author
Points: 33,167, Level: 79 |
|
|
Join Date: Jun 2003
Location: Utrecht, Netherlands.
Posts: 10,160
Thanks: 7
Thanked 188 Times in 186 Posts
|
|
Hi there,
The way IE8 renders is different from previous versions. The asp:Menu assumes incorrect defaults with regards to the z-index of the menu items. The ASP.NET team seems to be working on a fix for this problem.
In the mean time, take a look here to learn how you can work around the issue yourself: http://blogs.msdn.com/giorgio/archiv...ite-issue.aspx
In your case, you can fix the Planet Wrox site as follows:
1. In MasterPage.master add a new DynamicMenuStyle item like this:
Code:
<asp:Menu ID="Menu1" runat="server" CssClass="MainMenu" ....>
<DynamicMenuStyle CssClass="DynamicMenuStyle" />
...
Next, in Monochrome.css for the Monochrome theme add the following selector:
.DynamicMenuStyle
{
z-index: 1000;
}
I'll fix the live version of PlanetWrox.com....
Hope this helps,
Imar
|
|
The Following User Says Thank You to Imar For This Useful Post:
|
|

March 24th, 2009, 12:26 PM
|
 |
Wrox Author
Points: 33,167, Level: 79 |
|
|
Join Date: Jun 2003
Location: Utrecht, Netherlands.
Posts: 10,160
Thanks: 7
Thanked 188 Times in 186 Posts
|
|
The fix for the menu has now been released by the ASP.NET team: http://weblogs.asp.net/bleroy/archiv...available.aspx
Imar
|

March 24th, 2009, 12:33 PM
|
|
Registered User
|
|
Join Date: Mar 2009
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
Thanks very much for your help Imar. It looks like my question was timed perfectly with the fix from MS 
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |