I use either, it just depends on how much of a change is required to make the page look right in IE.
If it's a small change like the element needs to be 500px in IE rather than 480px than I'll use a workaround in my stylesheet.
But if there are numerous changes I go with the conditional comments to load a separate stylesheet if it's IE - but with this I don't have two copies of the same stylesheet, one coded for other browsers and one coded for IE, I have it ALWAYS load my main stylesheet, then have the IE stylesheet load if needed and alter only the elements it needs to (So no necessary duplicates in the stylesheet as to cut down on filesize)
Basically, how I do it is:
A couple of elements need changing: stick with workarounds
A lot of elements need changing: use conditional comments