Paste as HTML, but not really...
So you copy some text from a page on MSDN. You Paste it into your ASPX page in VS.NET and you get something like this:
<pre class="syntax"><b>public static </b><a href="http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystembooleanclasstopic.asp">bool</a><b> IsMatch(</b> <b> </b><a href="http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemstringclasstopic.asp">string</a><b> </b><i>input</i><b>,</b> <b> </b><a href="http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemstringclasstopic.asp">string</a><b> </b><i>pattern</i> <b>);</b></pre>
But then if Paste as HTML you get something like this:
public static bool IsMatch( string input, string pattern );
So when I ask it to Paste it copies all of the formatting and adds the HTML markup to the pasted text, but when I ask it to Paste the text from my clipboard as HTML, it posts just the text without the HTML tags. Maybe it should be called Paste as HTML without the HTML Tags?
Maybe I'm the only confused and who sees it as backwards...