Mark Hildreth's Blog

asp:Menu in IE8

I've been using IE8 Beta 2 since sometime in August. As soon as I had downloaded it, I raced to my sites to see if there were any issues caused by the new browser's strict adherence to standards. I'm pretty conservative when it comes to my page and control design, so I didn't expect too many issues. Unfortunately, most of our sites rely on the asp:Menu control to provide navigation. The first thing I noticed was that I could no longer see the Dynamic menu items when hovering over the menu. This is a pretty serious problem because that's the main way users navigate around the site. I did some basic googling and searching on the ASP.NET Forums, and there were quite a number of people with the same problem, but there didn't seem to be an obvious solution.

Needless to say, ever since then I've been eagerly anticipating the IE8 release candidate in hopes that this issue would just fix itself. Well, the release candidate just hit yesterday and it turns out the issue with the ASP.NET Menu control wasn't resolved. I'm sure the breakage was the result of a change to make the browser more standards compliant. Of course that's a good thing, but it's still annoying that I will have to fix old code to account for new browser changes.

 As it turns out, the fix is really straight forward. I'd like to thank the original poster and the folks at Microsoft Connect for posting enough information on this post to get me started. When the menu is rendered, a script resource is included on the page that contains a function called PopOut_Show. The function detects and sets the z-index property of the panel containing the dynamic menu items. The problem is the value for the z-index is calculated differently depending only on whether or not the browser is IE, not which version of IE. Thus, the z-index calculations for IE were assuming that the element.currentStyle.zIndex property would return a numeric value, but in IE8, unless the z-index for these elements has been specified (in a stylesheet or somewhere), the return value is "auto".

I had originally toyed around with using script to adjust the z-index values. That involved swapping in a new PopOut_Show function to append additional logic to account the "auto" value. After I took a second look at it, I realized the same thing could be done using only CSS which seemed like a much better solution. It turned out that all that was really needed was to create or modify a CSS class that includes a z-index value of at least 1, then assign the class to the Menu's DynamicMenuStyle property.  The CSS class would look something like this:

.adjustedZIndex {
    z-index: 1;
}

And the resulting Menu looks something like this:

<asp:Menu ID="Menu1" runat="server">
    <DynamicMenuStyle CssClass="adjustedZIndex" />
</asp:Menu>

You may have to set your z-index to be something higher (for example, if your menu was contained in an element that already had a z-index greater than 1), but this worked for me. I hope this is a help to those who have run into the same issue. Good luck with IE8 - My experience so far has been great!

 If you're interested in the script solution, just let me know and I'll post it.

Posted: Jan 26 2009, 09:57 PM by mhildreth | with 145 comment(s)
Filed under: , , ,

Comments

Scott Galloway said:

Good post...you may be happy to hear that we will be fixing a few things in the markup for the Menu control in ASP.NET 4.0, these won't unfortunately make Beta 1.

# January 26, 2009 10:58 PM

John Walker said:

@Scott - So, is this the recommended solution in the interim? Can browsercaps be used instead?

# January 27, 2009 3:36 AM

Maik’s Blog » Blog Archive » ASP:Menu in IE8 said:

Pingback from  Maik&#8217;s Blog  &raquo; Blog Archive   &raquo; ASP:Menu in IE8

# February 10, 2009 4:32 AM

Shay said:

Considering the fact that not many has migrated to asp.net 3.5 yet, and most sites using asp.net 2.0, what good will it do to them asp.net 4.0 and that also will be beta?

# March 26, 2009 1:23 PM

Pop Out Menu IE8 | keyongtech said:

Pingback from  Pop Out Menu IE8 | keyongtech

# March 28, 2009 10:07 PM

Oran Bodner said:

Actually this affected more my http://hop2home.com

Anyway, the patch didn't work, but your CSS patch worked like magic - may thanks!

Tell me - I'm tired of doing a workaround so that datagrids/gridviews don't scroll their headers - do you know if they're ever going to come out with one where you can specify something like "fixed header - do NOT scroll")?

ojbodner@hotmail.com

# April 3, 2009 6:50 AM

» IE8 - What you need to know :: CSS, JavaScript and XHTML Explained said:

Pingback from  &raquo; IE8  - What you need to know :: CSS, JavaScript and XHTML Explained

# April 23, 2009 2:50 PM

rizasirman2 said:

It works GR8!.. Thanks

# April 28, 2009 4:58 AM

Mnvs said:

Fix works for me.

GREAT!

# April 28, 2009 12:51 PM

Daniel said:

css fix is not working on my site.

# May 1, 2009 8:01 AM

NJ said:

Excellent tip, thanks. Saved me a lot of time.

# May 4, 2009 4:09 AM

W Forrest said:

I have two websites down and i’am on programmer can you clarify where on the master page and how i apply your fix.

bill

e mail bill@speyvideo.com

www.speyvideo.net

www.speyvideo.com

# May 7, 2009 11:05 AM

KPACABA said:

Worked like a charm, thanks much!

# May 8, 2009 2:00 PM

Juan Carlos said:

Thanks so much. I was afraid that i was going to have to remake the menu as html/css menu, though it still might be a good idea.

# May 20, 2009 3:43 PM

Aaron said:

Great tip! Saved me a headache, thanks!

# May 27, 2009 12:09 PM

Timothy Neville said:

LOVE YOU! Thanks so much.

# May 27, 2009 4:16 PM

alkutin said:

I have fixed this error on my site too.

I "set z-order: 8" for ASP:Menu DynamicMenu style and it works now!

# June 2, 2009 12:10 PM

yubi said:

my problem is the spacing show up between </td><td>. It happened after install IE7 to IE8.

It still the same after I applied your solution.

Pls give me some advice. Thx

# June 17, 2009 1:40 AM

ASP.Net Menu and ie8 problems | Sudden Gust of Gravity said:

Pingback from  ASP.Net Menu and ie8 problems | Sudden Gust of Gravity

# June 18, 2009 10:07 PM

nova said:

Only changed one sub menu item, i can't see the other sub menu items

# June 19, 2009 10:19 AM

cbm said:

Perfect! Thanks! You are awesome mhildreth!

# June 22, 2009 6:28 AM

Keith Holme said:

Great fix. Thanks.

# July 5, 2009 6:31 AM

Mike Samuels said:

I second the "thank you"

# July 8, 2009 11:04 AM

milia1000 said:

On Safari 3.2.1 and Google Chrome 2... :-(

# July 9, 2009 11:16 AM

milia1000 said:

What I would say on my last comment was that if you try to correct the z-index to solve IE8 menu problem, then the asp.net menu on Safari and Google Chrome stop work.

My solution:

- FOR IE8: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> on masterpage (new IE8 and a simple menu doesn't work?! ¿? )

- FOR SAFARI/GOOGLE see weblogs.asp.net/.../how-do-i-overcome-the-dreaded-safari-asp-net-menu-conundrum.aspx

Thanks, hope that helps someone.

# July 9, 2009 12:51 PM

Asp.Net Menu and ie8 Problems « Sudden Gust Of Gravity said:

Pingback from  Asp.Net Menu and ie8 Problems &laquo; Sudden Gust Of Gravity

# July 9, 2009 1:58 PM

Subash Nair said:

very good fix. thanks

# July 12, 2009 1:21 AM

sarah said:

Such a simple clean fix, thanks so much!

# July 13, 2009 8:01 AM

Tim Randall said:

An elegant fix. thanks very much.

# July 22, 2009 3:49 AM

Felipe said:

Hi man, thanks for this 'simple' solution, it help me a lot and save me to much time.

# July 29, 2009 7:24 PM

balle3201 said:

Thx alot, mate :-)

Worked like a charm!

# August 11, 2009 4:42 AM

leila said:

it dosent work for my website. i am tired.

# August 16, 2009 3:49 AM

Kram said:

Thanks a bunch.  Worked for me.    

# August 23, 2009 6:09 PM

mhariri said:

Great fix for Firefox But I am not sure why after I added the code only the first item on the dynamic menu show up in IE8!! I tried Z-Index:1 and 999 without any luck. Any ideas?

# August 23, 2009 8:48 PM

Michael Doscher said:

Just an FYI this will not work with Iframes on the page. the entire menu is then removed

# August 24, 2009 7:22 PM

Rm.Ramanathan (New Delhi,India) said:

Thanks. It works great. Keep it up.

# August 30, 2009 4:31 AM

dupls said:

I'm getting a blank drop down menu. This Css didn't solve the problem.

Any other ideas?

# September 2, 2009 11:58 AM

Gav said:

Great - Simple fix, just got the IE8 Dev toolbar to look at the drop down, saw z-index set to 'auto' then edited number till links were visible!

Great stuff - saved me alot of head-scratching...

# September 8, 2009 4:56 AM

Dharmesh Patel said:

Thanks mhildreth

i was tried more than 2 days but didn't get solution

Now it's work greate

# September 9, 2009 10:41 AM

James Hamilton said:

Thanks mhildreth, I didn't know about this problem until a user of my site pointed it out to me yesterday.  The CSS class solution appears to work for me.  As a complete newb to writing a site in the .Net framework, these blogs are a real help to me.

Thanks again.

# September 13, 2009 7:50 AM

Christian Donner said:

From W2Schools:

z-index only works on positioned elements (position:absolute, position:relative, or position:fixed).

The dynamic menu is a table, and it is not positioned. Anyway, the menu works for me in IE8. I am having this problem with .Net 3.5 in compatibility mode, not in standards mode. The dyanmic menu pops up, but is behind a Span that is is front of it. Using z-index on either element has no effect.

See www.heeroz.com/overlap.png

# September 17, 2009 10:51 PM

Greg Bell said:

Thanks, works well!

# October 11, 2009 10:38 PM

Robert said:

Thanks very much for the CSS "fix".

It is very simple and it works perfectly for me.

# October 13, 2009 10:46 AM

Chandra said:

Thanks a lot... saved my web site. Works great.

# October 14, 2009 12:16 PM

shubelal said:

This is fabulous work. its save time alot

Thanks you so much

# October 27, 2009 10:13 AM

gummadi said:

what you suggested i tried but its not working please if u come accross like please give me shout

my mail id gummadi.ram@gmail.com

# November 4, 2009 6:31 AM

DAVETİYE said:

güzel davetiye örnekleri, davetiye modelleri, düğün davetiyeleri

# November 5, 2009 7:13 AM

bryiantan said:

Awesome! z-index: 1; do the trick.

How about in Google Chrome? Any suggestion?

# November 12, 2009 9:44 PM

Amila said:

Great solution, worked fine for me.. Thanks a lot for saving my time

# November 23, 2009 4:17 AM

Matti said:

This solved the menu problem also in my case! - Thanks a lot!

ps. the asp:menu seems not to work at all in Safari! - This should be fixed also!

# November 28, 2009 6:51 PM

wow said:

IE8 broke  ASP.NET sample code?  Shocking!

# December 1, 2009 5:54 PM

Bbw Glamour Models said:

now I stay tuned..

# December 20, 2009 11:29 PM

ZBuggies said:

ASP.NET Menu problem with IE8 and its Solution

# December 23, 2009 11:54 AM

e11world said:

Very nice and easy fix and helped me a lot. Thanks!

# December 29, 2009 7:35 PM

Dale said:

Wow a work around for Microsoft's defective code! Hey great work around but isn't there enough to do without having to troubleshoot Microsoft's mistakes?

I worked two hours on this problem and decided not to spend the time going line by line through the generated script code to find the defect in the browser code. After all Microsoft isn't paying the bill!

# December 30, 2009 11:53 PM

Tassos said:

It works great, thank you.

# January 12, 2010 9:54 AM

Techek said:

Worked like a charm - no need to debug, inspect and scrutinize the website anymore.

# January 18, 2010 8:42 AM

Courtney said:

THANK-you sooooo much! ;)

# February 22, 2010 6:58 AM

Tom said:

Thanks for this - very quick and simple!

# March 22, 2010 7:50 AM

Satvinder said:

Thanks for the this. Very quick and easy fix.

# March 29, 2010 8:04 AM

Tris said:

Ya it worked,good solution

# April 5, 2010 3:59 AM

Joseph said:

I'm new to ASPX.

Your fix works, but I also get the literal text:

.adjustedZIndex {

   z-index: 1;

}

DISPLAYING ON MY PAGE.

I've tried moving it around, moving it to a .cs file, but either it won't compile, or the fix doesn't work.

Sorry for a "newbie" question, but where exactly do you put this, so the fix works, but the text itself doesn't show on your page?

Thanks much.

# April 5, 2010 2:39 PM

mhildreth said:

@Joseph - the adjustedZIndex code is a css style rule. It should be placed in a style tag in the head section of your page. Something like this:

<html>

<head>

<style type="text/css">

.adjustedZIndex {

   z-index: 1;

}

</style>

</head>

<body>

...

</body>

</html>  

# April 6, 2010 9:28 AM

Joseph said:

Thanks for the help.

One other question.

This fix is having an undesirable side effect on the font size(s).

Is there a way to see the same font size(s) that I was seeing while retaining the fix?

Does the naming of the style element affect this, or is it merely a natural result of using the zindex property?

Thanks much!

# April 13, 2010 9:58 AM

mclean said:

This helps.

People complain here that it allows only the first sub item to show. This is because the height style is being used as the maximum size of the entire stack of sub items. It you increase it, you will see it show more sub items.

I don't know know how to fix this, myself. However, the best thing you can do is remove the height style altogether. This gives me somewhat ok menu items--just a little skewed. Not perfect, but I can see them.

# April 25, 2010 11:01 PM

phonejammer said:

What do you think about adding some more pictures?  I’m not trying to offend anyone, site is really great. But as I know humans acquire info much more effective if they see certain useful images.

Whitney Drawledge

# May 12, 2010 6:03 PM

indian escort said:

Rather great blog to read it in my view. A small question, why don't you place it to social bookmarks? This might bring big traffic to this article.

# May 30, 2010 4:44 PM

bob said:

thank god i found this site, your bug fix is legend!

just to clarify to others add

 <style type="text/css">

   .adjustedZIndex

    {

        z-index: 1;

    }

<asp:Menu ID="Menu1" runat="server" CssClass="Menu" Width="160px">

*over here add *

<DynamicMenuStyle CssClass="adjustedZIndex" />

*****

<LevelSelectedStyles>

# June 13, 2010 12:13 PM

brunette escort London said:

Undoubtfully great story as for me. It'd be really cool to read a bit more about such topic. Thnx for giving such information.

Katie TORRES

# June 24, 2010 7:11 PM

chef jobs said:

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck!

# June 28, 2010 3:02 AM

model escorts london said:

It was certainly interesting for me to read this post. Thanks for it. I like such themes and anything that is connected to them. I would like to read more soon. By the way, rather good design your site has, but don’t you think design should be changed once in a few months?

Mary Smith

# July 8, 2010 6:22 PM

Srini said:

I searched a lot and changed my code on menu.. and this worked end of two days of struggle.. Thanks!!

Srini

# July 14, 2010 8:58 PM

Trevor said:

Thanks,

Works great

# August 13, 2010 12:25 PM

VanMy said:

So many thanks for Author of CSS solution And thank for all

# August 28, 2010 12:04 PM

asp:Menu in IE8 « Shivaprakash HM said:

Pingback from  asp:Menu in IE8 &laquo; Shivaprakash HM

# September 7, 2010 2:08 AM

Joan Simpson said:

It was rather interesting for me to read this article. Thanx for it. I like such themes and everything connected to this matter. I would like to read a bit more on that blog soon.

Joan Simpson

<a href="escorttweets.com/">european escort</a>

# September 22, 2010 3:01 PM

Kate Benedict said:

It is extremely interesting for me to read this article. Thanks the author for it. I like such topics and everything that is connected to them. I definitely want to read more on that blog soon.

Kate Benedict

<a href="kievcityescort.com/">escort und kiev</a>

# September 27, 2010 2:44 AM

Jshantz said:

You rock man - thanks.  This was a life saver.  The other solutions looked very painful...

# October 5, 2010 10:27 PM

bhart sharkman said:

wow, this really work. thanks

# October 12, 2010 2:22 AM

stefano m said:

Wonderful!

i had  the same problem, and i solved with your tip.. thx a lot!

# October 12, 2010 6:33 AM

Anete Hakkinen said:

Pretty interesting blog you've got here. Thanx for it. I like such themes and anything that is connected to this matter. I definitely want to read a bit more on that blog soon.

Anete Hakkinen

<a href="irelandescortdirectory.com/.../belfast-escorts">escorts visiting belfast</a>

# October 14, 2010 4:15 PM

w forrest said:

to Mark Hildreth's and Joshua Johnson

I was on your site May 7, 2009 for help with the site menu. I never got it working as I didn’t know how to put the code into my master page and setup the css. It was Simon that fixed it for me and got it running but not it safari or Google and he setup my windows 2003 server. He is no longer here so I’m left with it. I see Joshua Johnson has a fix for safari but again I can’t get the code to work as I don’t know how to place it in the master page or if it goes in the comfit file and where? Also when he set up the server he set it for net 2 but the server has been updated to net 4 and I see there may be a fix on net 4 to run the menu correctly without the fixes but again i don’t know how. I only used net for the menu as it was such a wonderful thing to run a menu. Can you help me get it running  correctly on safari.

bill

milia1000 said:  

What I would say on my last comment was that if you try to correct the z-index to solve IE8 menu problem, then the asp.net menu on Safari and Google Chrome stop work.

- FOR SAFARI/GOOGLE see weblogs.asp.net/.../how-do-i-overcome-the-dreaded-safari-asp-net-menu-conundrum.aspx

# October 19, 2010 4:10 AM

London latin escorts said:

I would like to read a bit more soon. By the way, rather nice design you have at this site, but how about changing it once in a few months?

# October 21, 2010 5:04 AM

gold key auto sales said:

Very informative post. Thanks for taking the time to share your view with us.

# October 31, 2010 7:08 PM

healthy energy bars recipes said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# November 6, 2010 1:49 PM

Ashley McCraney said:

Mark, I've been emulating ie7 in my apps with this issue... until I found this.  Your the man!

# November 11, 2010 9:49 AM

prasenjit said:

Hi, for me it pertially works. it only made the first item floating in the drop down menu. rest of the items doestn display. can not figure out the where i missed my code is very simple though.

# November 16, 2010 2:15 AM

Anil said:

ure solution z-index not worked....

.adjustedZIndex

{

   z-index: 5;

}

is there any solution bddy....

# November 17, 2010 7:59 AM

IrrerceGeld said:

I’ve been visiting your blog for a while now and I always find a gem in your new posts.  Thanks for sharing.

# November 20, 2010 5:31 PM

Kate Stepman said:

Wow, truly great topic. How can I find your RSS?

Kate  Stepman

<a href="www.wirelesscameradetectors.com/">spy security</a>

# November 24, 2010 8:50 PM

Cafliage said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# November 28, 2010 2:50 PM

Clara said:

I have tried to change the z-index but it doesn't work in my web application.

Some PCs is working fine but some didn't.

Do you have any idea?

Thanks in advance.

# December 1, 2010 3:25 AM

Julia Simpson said:

Nice page. Will be back soon.  

Julia Simpson    

<a href="parisescort.info/">escort girls asiatiques paris</a>

# December 17, 2010 4:25 AM

cardllpr said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# December 22, 2010 5:03 PM

Kate Swenson said:

Rather nice blog you've got here. Thanx for it. I like such themes and everything that is connected to this matter. I would like to read a bit more soon.

Kate Swenson

<a href="rome-escort.info/">escort foto annuncio roma</a>

# January 5, 2011 9:16 AM

Brijesh Bosamiya said:

Thanks.It is working.

# January 8, 2011 6:02 AM

meadlemaGip said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# January 12, 2011 1:26 PM

Joan Hakkinen said:

Pretty cool place you've got here. Thanks for it. I like such topics and anything connected to this matter. I definitely want to read more on that blog soon.  

Joan Hakkinen  

<a href="nyescorts.net/">female escorts nyc</a>

# January 21, 2011 2:36 PM

ChafterBrar said:

Awesome Post. I add this Blog to my bookmarks.

# January 22, 2011 3:28 AM

Mehdi said:

Nice , Simple and Complete Solution.

# January 27, 2011 2:08 PM

Darko Serbia said:

Nice solution! All congratulations!

# February 10, 2011 4:43 PM

public car auction said:

Thanks For This Blog, was added to my bookmarks.

# February 20, 2011 2:30 AM

anirwayjady said:

Great Post. I add this Blog to my bookmarks.

# February 25, 2011 2:38 AM

police auto auctions said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# March 1, 2011 8:03 PM

bahglyday said:

Thanks For This Post, was added to my bookmarks.

# March 3, 2011 3:22 PM

InseceDyncnaw said:

Very informative post. Thanks for taking the time to share your view with us.

# March 7, 2011 1:41 PM

TerreFappaply said:

Very informative post. Thanks for taking the time to share your view with us.

# March 28, 2011 8:23 PM

denver car auction said:

You certainly have some agreeable opinions and views. Your blog provides a fresh look at the subject.

# April 1, 2011 9:43 PM

Mr. Anderson said:

Great post.  I was having this problem with asp:Menu items as well.  Put this in my master template, and it fixed the issue.  Thx for posting.

# April 16, 2011 10:34 PM

Bella Benedict said:

It was certainly interesting for me to read the blog. Thanks for it. I like such themes and anything connected to them. I definitely want to read a bit more soon.  

Bella Benedict    

<a href="www.pickescort.com/">london escorts agency</a>

# April 20, 2011 9:31 PM

asp.net Menu ?????????????????? ???????????? - BaiDot said:

Pingback from  asp.net Menu ?????????????????? ???????????? - BaiDot

# April 30, 2011 10:36 AM

Tim Howard said:

Your "patch" in the CSS class worked like a charm! Funny that I developed the page in Visual Studio, and before I added your patch it didn't work in IE but did work in Firefox...   ;)

Thanks!!!

# May 3, 2011 3:40 PM

johnebena said:

[URL=www.reversephonelookup.com]reverse phone lookup[/URL]

# May 6, 2011 10:18 PM

Power Tools said:

Thanks for the help, been having the same problem and i thought it was going to require a lot of work to do, but this is much better.

# May 9, 2011 7:55 PM

cefreftBatVut said:

Please welcome to website with easy fruits recipes - [url=http://www.fruitcooking.com]fruit cooking[/url] !!

# May 26, 2011 10:25 PM

nibgainly said:

Cooking website <a href="http://russcooking.com"> russian cooking </a> - russian cooking traditional recipes.

# May 27, 2011 11:45 AM

Amit said:

Thanks a lot

I was really thankful to you for the support

# May 28, 2011 1:27 AM

Gvidonka said:

Soup cooking recipes of soup  

[url=http://www.soupscooking.com]soup cooking[/url]

# May 31, 2011 2:28 PM

nibgainly said:

Cooking website russian recipes - [url=http://www.russcooking.com]russian cooking[/url]

# May 31, 2011 2:52 PM

nibgainly said:

Cooking website russian traditional cooking - [url=http://www.russcooking.com]russian cooking[/url]

# May 31, 2011 2:56 PM

quisteasseree said:

Thanks For This Post, was added to my bookmarks.

# June 1, 2011 3:14 PM

ASP:Menu 在IE8中显示不正确的解决方法 - 闲云博客 | 关注互联网科技,记录编程点滴 said:

Pingback from  ASP:Menu 在IE8中显示不正确的解决方法 - 闲云博客 | 关注互联网科技,记录编程点滴

# June 7, 2011 12:02 AM

twingigma said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# July 13, 2011 3:20 PM

twingigma said:

Great Blog. I add this Blog to my bookmarks.

# July 14, 2011 4:30 PM

twingigma said:

You certainly deserve a round of applause for your post and more specifically, your blog in general. Very high quality material

# July 15, 2011 3:05 PM

twingigma said:

I just book marked your blog on Digg and StumbleUpon.I enjoy reading your commentaries.

# July 16, 2011 4:50 PM

Allerblauntee said:

I find myself coming to your blog more and more often to the point where my visits are almost daily now!

# July 18, 2011 3:40 PM

Jayesh Blacksmith said:

Hello ,

sub menu is not displayed , please help me , only background is displayed , no item is displayed in ie8. In mozilla and chrome working well. plz help me

# July 30, 2011 2:26 PM

Dipak said:

Thanks for sharing.

# August 3, 2011 11:55 PM

IE8 – What you need to know « CSS, XHTML and JavaScript Explained said:

Pingback from  IE8  &#8211; What you need to know &laquo; CSS, XHTML and JavaScript Explained

# August 6, 2011 2:14 AM

taajuddeen said:

y cГіmo es necesario obrar en este caso?  

http://eru1.myftp.biz/  

darek

# August 21, 2011 1:45 AM

reverse phone lookup said:

I don't really think so, it's to awkward...

# August 30, 2011 9:17 AM

Landscape Lighting said:

This post shed some light on a topic for which I had been in the dark for a while.

# September 12, 2011 1:06 PM

hamza hanada said:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

is work

# September 15, 2011 8:17 AM

phone number lookup said:

nice post by the way

# October 12, 2011 4:20 AM

Sample Wedding Invitations said:

I’ve been visiting your blog for a while now and I always find a gem in your new posts.  Thanks for sharing.

# October 26, 2011 2:38 PM

medical billing and coding schools said:

my problem is the spacing show up between </td><td>. It happened after install IE7 to IE8.

# November 2, 2011 3:14 PM

r4 ds said:

Christmas is coming and r4 card team is having a promotion now, get yours and hurry up.

# November 12, 2011 7:02 AM

winter leather jacket said:

Resources like the one you mentioned here will be very useful to me! The information mentioned in the article are some of the best available.

# November 14, 2011 7:23 AM

leather jacket said:

Really very nice post, Thanks for sharing this valuable information with us.

# November 21, 2011 1:32 AM

Inception Cobb Jacket said:

Great blog here, such a wealth of content.

# November 23, 2011 6:20 AM

CNA Training said:

Hey would you mind sharing which blog platform you're using? I'm looking to start my own blog soon but I'm having a tough time selecting between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your layout seems different then most blogs and I'm looking for something unique.                  P.S Apologies for getting off-topic but I had to ask!

# November 26, 2011 11:10 PM

PPE said:

This a timely tip, thanks a lot, I've been pulling my hair out on this issue for over a week, nice work.

# November 30, 2011 4:23 PM

Bielizna Damska said:

My programmer is trying to persuade me to move to .net from PHP. I have always disliked the idea because of the costs. But he's tryiong none the less. I've been using Movable-type on several websites for about a year and am worried about switching to another platform. I have heard fantastic things about blogengine.net. Is there a way I can transfer all my wordpress content into it? Any help would be really appreciated!

# December 19, 2011 10:06 PM

adobe oem software download said:

7QeAgT Heartfelt thanks..!!

# December 27, 2011 5:53 PM
Leave a Comment

(required) 

(required) 

(optional)

(required)