Here's the issue:
Your code colorization script replaces line breaks with <br /> tags. When copying/pasting, IE7 apparently doesn't translate the <br /> tag into a linebreak like it does for the screen.
In other words, your code becomes this:
public PageSizer(string href, int index)<br />{<br /> HRef = href;<br /> PageIndex = index;<br /> }
But you want it to become this:
public PageSizer(string href, int index)<br />
{<br />
HRef = href;<br />
PageIndex = index;<br />
}<br />
In the latest version of prettify.js on Google Code, the line responsible is line 1001 (part of recombineTagsAndDecorations):
html.push(htmlChunk.replace(newlineRe, '<br />'));
Edited, based on the comments:
For IE7, this is what the line should probably be changed to:
html.push(htmlChunk.replace(newlineRe, '\n'));
(Assuming newlineRe is a placeholder).
This fix also holds up in Chrome, and FFX3... I'm not sure which (if any) browsers need the <br /> tags.
Update:
More information in my second response:
http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly#156069
