Saturday, July 31, 2010
  Search
 
Register
Login
 
Creating a Virtual Directory in IIS
One of the first things you will need to do prior to installing DotNetNuke on a server is to create a virtual directory which will host your DotNetNuke website.  If you have full control over you...

Find this article and more in the IIS & ASP.NET category

Read This Article . . .

Setting Up Multiple Websites
You can create multiple distinct, (mainly) independent websites with one instance of a DNN installation on your web account. In lamens terms, this means that you can purchase ONE web hosting accoun...

Find this article and more in the category

Read This Article . . .

How to Install and Configure ActiveDirectory Provider for DotNetNuke 5.0
 The directions for installing and configuring extensions in DotNetNuke 5.0 are very similiar, but slightly different than from previous versions. Here's how to install the ActiveDirectory authentica...

Find this article and more in the category

Read This Article . . .

Adding Google AdSense with Video
Adding Google AdSense to your DotNetNuke portal has never been easier. By default, a Google AdSense module is added the list of installed modules when your DNN portal is first created. It's easy to ...

Find this article and more in the Modules category

Read This Article . . .

Using DNN to take Advantage of GoDaddy Domain Names
Let's face it, GoDaddy is cheap. Pay for the hosting services and the domain names are $1.99, not a bad deal. And even without hosting services, you can pick up domain names for as low as $6.99. Put ...

Find this article and more in the category

Read This Article . . .

CodePrint Module
Tired of mucking around with adding code chunks to your website? We all know what a pain it can be trying to add some simple block of code to our webpages and still make it readable. Introducing....T...

Find this article and more in the DotNetNuke category

Read This Article . . .

New DotNetNuke 5.0 Cambrian Package Writer for Module Developers
Attention developers! DotNetNuke 5.0 Cambrian has a nifty new tool to help developers package their modules nicely to fit with the new “Extensions” manager. Under the old Module Definitions manager, ...

Find this article and more in the category

Read This Article . . .

Converting a CSS Template To a DotNetNuke Skin
Creating DotNetNuke Skins can be a time consuming task. But, it's really not that hard and it doesn't have to be if you can use templates to help get started. Why not convert some free templates from...

Find this article and more in the category

Read This Article . . .

Dude, Where’s my web.config file? Resolve Installation DNN Error Message: BC30451: Name 'Config' is not declared
Sometimes troubleshooting DNN errors can be a royal pain. Fortunately, if you know what you're looking for installation errors are usually pretty easy to resolve. Unfortunately, if you don't know wha...

Find this article and more in the category

Read This Article . . .

DotNetNuke 5 Cambrian Extropy Skin Features and Limitations
The new DotNetNuke Extropy skin looks very cool from a distance...leaps and bounds above the old default blue skin. But, it's got some limitations you should know about upfront.

Find this article and more in the category

Read This Article . . .

Search for Articles

Virtual-Essential's DotNetNuke, .NET, and SQL Tips For the Developer

Minimize
Oct 21

Written by: Briana Tarrance
10/21/2008 6:38 PM 

Ever wished you had an easy way to see what you're site was looking like in different versions of Internet Explorer without having to set up a Virtual PC just to do it?

All of us as web developers have wanted to rip our arms off as we judiciously try to get our sites to look right in a myriad of browers, switching back and fro from IE to FireFox, etc, but it's not quite as simple to run differing versions of IE side by side. . . until now.

Before this, I either had to create Virtual PC's simply to install old versions of Internet Explorer or I had to waste my time waiting for screen shots of my site using BrowserShots.org

I recently ran across this nifty tool on TredoSoft.com that will install prior versions of IE on your computer without interfering with your current install.

It's a simple free download...you don't even have to register to get it. Click install and you'll be asked which prior versions of IE you want to install on your computer. Voila! Quick and painless.

Now, there's no more excuses for sites to look bad in any of the browsers! I'm not sure if that's a blessing or a burden honestly with all the hoopla we have to jump through just to get them to look right, but either way, it's another tool in the toolbox.  Now, get out that CSS file and start fixing all the elements that wont render in IE6 or below with conditional hacks. Conditional hacks are only read by IE and are a good way to target those IE quirks that we all could do without. Just apply something like this in your CSS file:

for versions "Less Than or Equal to IE6" use something like this:

<!--[if lte IE 6]>
    <link rel="stylesheet" type="text/css" href="ie_hacks.css" />
<![endif]-->

or

<!--[if lte IE 6]>
    .applySomeStyleHereForIE6OrLess{padding:0px;}
<![endif]-->

for versions "Less Than" IE 6 use something like the following:

<!--[if lt IE 6]>
    <link rel="stylesheet" type="text/css" href="ie_hacks.css" />
<![endif]-->

Note: The IE Developer toolbar doesn't work with IE 6 or below...so that sucks, but you're still better off than you were 5 minutes ago, right???

Tags:

1 comment(s) so far...

Re: Easily Testing in Different Versions of IE

Thanks for posting tutorial and the code

By Poppers on   6/13/2009 11:28 AM

Your name:
Your email:
(Optional) Email used only to show Gravatar.
Your website:
Title:
Comment:
Security Code
Enter the code shown above in the box below
Add Comment   Cancel 
 
 
Copyright 2008 by Virtual-Essentials.com Privacy Statement    Terms Of Use