I wanted to demonstrate this nifty Visual Studio .NET Plugin. The plugin is described and available
here. I don't have too much need for this function, but it's very helpful in pasting HTML in a blog entry! I find that HTML is the buggaboo of .Text posting from a web page, as the web page thinks its part of the action rather than part of the text. Anything can happen. CopySourceAsHTML to the rescue!
Below is the HTML template code I use in Textpad for creating posts with either picture left or picture right. Pretty high-tech, eh?At bottom is a screenshot of CopySourceToHTML in action.
<br><br><table width="90%">
<tr><td valign="top">
<img src="http://dbvt.com/x/blog/2004/">
</td><td><img src="http://dbvt.com/images/blank.gif" width=20 height=20></td>
<td valign="top">comments</td>
</tr>
</table>
<br>
<br>
PICTURE RIGHT
<br><br><table width="90%">
<tr>
<td valign="top">comments</td>
<td><img src="http://dbvt.com/images/blank.gif" width=20 height=20></td>
<td valign="top">
<img src="http://dbvt.com/x/blog/2004/">
</td>
</tr>
</table>
<br>
<br>