<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>.NET General</title>
        <link>http://waynester.net/blog/category/1.aspx</link>
        <description>Microsoft .NET Framework - including ASP.NET, Windows Forms, .NET development, etc.</description>
        <language>en-US</language>
        <copyright>Wayne Larimore</copyright>
        <generator>Subtext Version 2.1.2.2</generator>
        <creativeCommons:license>wlar1m0re</creativeCommons:license>
        <item>
            <title>Multiple connections to a server or shared resource by the same user</title>
            <link>http://waynester.net/blog/archive/2010/07/09/multiple-connections-to-a-server-or-shared-resource-by-the.aspx</link>
            <description>&lt;p&gt;&lt;font size="2" face="Verdana"&gt;Have you ever received this error message and scratched your head?&lt;/font&gt;&lt;/p&gt;
&lt;div&gt;&lt;font face="Arial"&gt;Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again&lt;/font&gt;&lt;/div&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;Since I run multiple virtual environments with the same logon credentials it used to happen to me all the time.  &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;The solution is to use the IP Address or the full domain as demonstrated here:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;Instead of &lt;/font&gt;&lt;font size="2" face="Verdana"&gt;\\SERVER1\Websites&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;Try this &lt;/font&gt;&lt;font size="2" face="Verdana"&gt;\\SERVER1.net\Websites&lt;/font&gt;&lt;font size="2" face="Verdana"&gt; OR &lt;/font&gt;&lt;font size="2" face="Verdana"&gt;\\192.168.30.1\Websites&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;Works like a charm.&lt;/font&gt;&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5774.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2010/07/09/multiple-connections-to-a-server-or-shared-resource-by-the.aspx</guid>
            <pubDate>Fri, 09 Jul 2010 17:04:51 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5774.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2010/07/09/multiple-connections-to-a-server-or-shared-resource-by-the.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5774.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5774.aspx</trackback:ping>
        </item>
        <item>
            <title>"The unattend answer file contains an invalid product key" VMWare Windows Server 2008 Install</title>
            <link>http://waynester.net/blog/archive/2010/05/27/the-unattend-answer-file-contains-an-invalid-product-key-vmware.aspx</link>
            <description>&lt;p&gt;&lt;font size="2" face="Verdana"&gt;I was prepping a virtual environment within VMWare Workstation 6.5 (EZInstall approach) for Microsoft SharePoint 2010.  I encountered the following challenge when booting from a Windows Server 2008 R2 x64 ISO:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;"The unattend answer file contains an invalid product key..."&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" face="Verdana"&gt;To get rid of this show-stopper I simply disabled the floppy drive connection it had created.  It worked like a charm.&lt;/font&gt;&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5772.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2010/05/27/the-unattend-answer-file-contains-an-invalid-product-key-vmware.aspx</guid>
            <pubDate>Thu, 27 May 2010 12:43:37 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5772.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2010/05/27/the-unattend-answer-file-contains-an-invalid-product-key-vmware.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5772.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5772.aspx</trackback:ping>
        </item>
        <item>
            <title>How to get Eval ItemTemplate value from TemplateField</title>
            <link>http://waynester.net/blog/archive/2010/04/06/how-to-get-eval-itemtemplate-value-from-templatefield.aspx</link>
            <description>&lt;p&gt;If you want to retrieve a value produced by an Eval within an TemplateField within an ItemTemplate, this is how...&lt;/p&gt;
&lt;p&gt;Here's the code:&lt;/p&gt;
&lt;pre&gt;string _id = ((DataBoundLiteralControl)GridView1.Cells[0].Controls[0]).Text; &lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Here's the Design View:&lt;/p&gt;
&lt;pre&gt;&amp;lt;asp:GridView ID="GridView1" runat="server" DataSourceID="sdsDataSource" DataKeyNames="ID"&amp;gt;&lt;/pre&gt;
&lt;pre&gt;  &amp;lt;Columns&amp;gt;&lt;/pre&gt;
&lt;pre&gt;    &amp;lt;asp:TemplateField HeaderText="ID"&amp;gt;&lt;/pre&gt;
&lt;pre&gt;      &amp;lt;ItemTemplate&amp;gt; &amp;lt;%#Eval("ID") %&amp;gt;&amp;lt;/ItemTemplate&amp;gt;&lt;/pre&gt;
&lt;pre&gt;    &amp;lt;/asp:TemplateField&amp;gt;&lt;/pre&gt;
&lt;pre&gt;  &amp;lt;/Columns&amp;gt;&lt;/pre&gt;
&lt;pre&gt;&amp;lt;/asp:GridView&amp;gt;&lt;/pre&gt;&lt;img src="http://waynester.net/blog/aggbug/5769.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2010/04/06/how-to-get-eval-itemtemplate-value-from-templatefield.aspx</guid>
            <pubDate>Tue, 06 Apr 2010 15:07:38 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5769.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2010/04/06/how-to-get-eval-itemtemplate-value-from-templatefield.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5769.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5769.aspx</trackback:ping>
        </item>
        <item>
            <title>It's Official - Upgraded Blog &amp; New Diggs</title>
            <link>http://waynester.net/blog/archive/2009/11/16/its-official-upgraded-blog-new-diggs.aspx</link>
            <description>&lt;p&gt;This past weekend I upgraded this blog.  I run my blog on &lt;a target="_blank" href="http://www.subtextproject.com"&gt;subText,&lt;/a&gt; a fork of the old .TEXT blogging platform.  I went from version 1.9.3 to 2.1.2 and it wasn't a smooth migration path, let me tell you. &lt;/p&gt;
&lt;p&gt;At the same time, I moved all of my websites (including this blog) from webhost4life to the fairly new &lt;a target="_blank" href="http://www.WinHost.com"&gt;WinHost.com&lt;/a&gt;.  These guys are doing it all right.  It fits exactly what I was needing and has cut my hosting cost in half.  They bill on a monthly basis and have top quality support.  The control panel is very simple but yet powerful.  I went with the basic plan.  However, they do provide an advanced plan as well.  Some of the issues I ran across with my subText upgrade dealt with going from an IIS 6 platform to an IIS 7 platform.  If anyone else is looking to do the same leave a comment and I'll fill you in on what I had to do to make it happen.&lt;/p&gt;
&lt;p&gt;Anyways, I'm a happy camper now.  Glad to have the migration behind me.  &lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5760.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2009/11/16/its-official-upgraded-blog-new-diggs.aspx</guid>
            <pubDate>Mon, 16 Nov 2009 22:02:03 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5760.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2009/11/16/its-official-upgraded-blog-new-diggs.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5760.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5760.aspx</trackback:ping>
        </item>
        <item>
            <title>Telerik online VB C# Code Converter Translator</title>
            <link>http://waynester.net/blog/archive/2009/09/16/Telerik-online-VB-C-Code-Converter-Translator.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;It appears that Telerik has published a Visual Basic and C# code translation online.  Nice.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;font face="Arial"&gt;&lt;a target="_blank" href="http://converter.telerik.com/"&gt;http://converter.telerik.com/&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5757.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2009/09/16/Telerik-online-VB-C-Code-Converter-Translator.aspx</guid>
            <pubDate>Wed, 16 Sep 2009 15:21:30 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5757.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2009/09/16/Telerik-online-VB-C-Code-Converter-Translator.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5757.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5757.aspx</trackback:ping>
        </item>
        <item>
            <title>How To Upgrade Windows 7 RC to Windows 7 RTM</title>
            <link>http://waynester.net/blog/archive/2009/08/08/How-To-Upgrade-Windows-7-RC-to-Windows-7-RTM.aspx</link>
            <description>&lt;p&gt;&lt;font face="Verdana" size="2"&gt;[via intowindows.com]&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana" size="2"&gt;&lt;em&gt;"If you have been running Windows 7 RC, then you might want to upgrade from Windows 7 RC to Windows 7 RTM. Although Windows 7 RC to Windows 7 RTM in-place upgrade is not supported officially, you can upgrade from Windows 7 RC to RTM with a simple trick."&lt;/em&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.intowindows.com/how-to-upgrade-windows-7-rc-to-rtm"&gt;&lt;font face="Verdana" size="2"&gt;http://www.intowindows.com/how-to-upgrade-windows-7-rc-to-rtm&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5753.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2009/08/08/How-To-Upgrade-Windows-7-RC-to-Windows-7-RTM.aspx</guid>
            <pubDate>Sat, 08 Aug 2009 16:05:44 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5753.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2009/08/08/How-To-Upgrade-Windows-7-RC-to-Windows-7-RTM.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5753.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5753.aspx</trackback:ping>
        </item>
        <item>
            <title>Virtual PC VMWare Alternative = Virtual Box (VirtualBox)</title>
            <link>http://waynester.net/blog/archive/2009/04/29/Virtual-PC-VMWare-Alternative--Virtual-Box-VirtualBox.aspx</link>
            <description>&lt;p&gt;&lt;font face="Verdana" size="2"&gt;If you believe Microsoft's Virtual PC has been abandoned or VMWare is too pricey for your budget, give the free Open Source alternative a try.  I have been reading some forums and blog posts from some happy folks using it.  Also, as of this posting date, the community is really active in keeping it cutting edge.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana" size="2"&gt;Virtual Box - &lt;/font&gt;&lt;a href="http://www.virtualbox.org/"&gt;&lt;font face="Verdana" size="2"&gt;http://www.virtualbox.org/&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;
&lt;address&gt;&lt;font face="Verdana"&gt;&lt;font size="2"&gt;&lt;span class="searchword0"&gt;"Virtual&lt;/span&gt;&lt;span class="searchword1"&gt;Box&lt;/span&gt; is a family of powerful x86&lt;/font&gt;&lt;/font&gt;&lt;a class="wiki" href="http://www.virtualbox.org/wiki/Virtualization"&gt;&lt;font face="Verdana"&gt;&lt;font size="2"&gt;&lt;span class="searchword0"&gt;virtual&lt;/span&gt;ization&lt;/font&gt;&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana" size="2"&gt; products for enterprise as well as home use. Not only is &lt;span class="searchword0"&gt;Virtual&lt;/span&gt;&lt;span class="searchword1"&gt;Box&lt;/span&gt; an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL)."&lt;/font&gt;&lt;/address&gt;&lt;img src="http://waynester.net/blog/aggbug/5748.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2009/04/29/Virtual-PC-VMWare-Alternative--Virtual-Box-VirtualBox.aspx</guid>
            <pubDate>Wed, 29 Apr 2009 21:38:53 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5748.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2009/04/29/Virtual-PC-VMWare-Alternative--Virtual-Box-VirtualBox.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5748.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5748.aspx</trackback:ping>
        </item>
        <item>
            <title>asp.net page break via HTML - reporting tip</title>
            <link>http://waynester.net/blog/archive/2009/03/12/asp.net-page-break-via-HTML--reporting-tip.aspx</link>
            <description>&lt;p&gt;&lt;font face="Verdana" size="2"&gt;Have you ever wanted to kick out a report via ASP.NET but have not figured out how to force page breaks?  Well, here's the easy on it:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes"&gt;style&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes"&gt;="&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes"&gt;PAGE-BREAK-AFTER&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes"&gt;: &lt;span style="COLOR: blue"&gt;always"&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes"&gt;&lt;span style="COLOR: blue"&gt;&lt;font face="Verdana" color="#000000"&gt;You can make your report as simple or complex as you like with pure ASP.NET and a javascript print function - you're in business.&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes"&gt;&lt;span style="COLOR: blue"&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5744.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2009/03/12/asp.net-page-break-via-HTML--reporting-tip.aspx</guid>
            <pubDate>Thu, 12 Mar 2009 21:55:18 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5744.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2009/03/12/asp.net-page-break-via-HTML--reporting-tip.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5744.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5744.aspx</trackback:ping>
        </item>
        <item>
            <title>ASP.NET Panel control generates Hot Pink background</title>
            <link>http://waynester.net/blog/archive/2009/01/06/ASP.NEt-Panel-control-generates-Hot-Pink-background.aspx</link>
            <description>&lt;p&gt;&lt;font face="Verdana"&gt;&lt;font size="2"&gt;Anyone else come across this &lt;span style="FONT-SIZE: 9pt; LINE-HEIGHT: 115%; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;phenomenon?  I thought something in my style settings was doing this at first.  Then I started out from scratch.  I created a new Website with a new webform.  Introduced a GridView control and wrapped it up with a Panel control and printed it out.  Hot Pink, baby!  The culprit seems to be the Panel control.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana"&gt;&lt;font size="2"&gt;&lt;span style="FONT-SIZE: 9pt; LINE-HEIGHT: 115%; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;&lt;strong&gt;[update]&lt;/strong&gt; turned out to be related to the printer driver for the Ricoh printer line&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5743.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2009/01/06/ASP.NEt-Panel-control-generates-Hot-Pink-background.aspx</guid>
            <pubDate>Tue, 06 Jan 2009 21:41:24 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5743.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2009/01/06/ASP.NEt-Panel-control-generates-Hot-Pink-background.aspx#feedback</comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5743.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5743.aspx</trackback:ping>
        </item>
        <item>
            <title>Duplicate Items in DropDownList using AppendDataBoundItems</title>
            <link>http://waynester.net/blog/archive/2008/10/23/Duplicate-Items-in-DropDownList-using-AppendDataBoundItems.aspx</link>
            <description>&lt;p&gt;Are you getting duplicate entries in your DropDownList control when using AppendDataBoundItems="true" and pulling in data from a datasource?  This is one of those things that trips me up ever so often.  The solution is to set &lt;strong&gt;EnableViewState="false"&lt;/strong&gt; on the control.  This prevents the previous items from being cached in the ViewState.&lt;/p&gt;
&lt;p&gt;Hope this helps.  If so, leave a comment of your experience.&lt;/p&gt;&lt;img src="http://waynester.net/blog/aggbug/5741.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wayne Larimore</dc:creator>
            <guid>http://waynester.net/blog/archive/2008/10/23/Duplicate-Items-in-DropDownList-using-AppendDataBoundItems.aspx</guid>
            <pubDate>Fri, 24 Oct 2008 03:46:19 GMT</pubDate>
            <wfw:comment>http://waynester.net/blog/comments/5741.aspx</wfw:comment>
            <comments>http://waynester.net/blog/archive/2008/10/23/Duplicate-Items-in-DropDownList-using-AppendDataBoundItems.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://waynester.net/blog/comments/commentRss/5741.aspx</wfw:commentRss>
            <trackback:ping>http://waynester.net/blog/services/trackbacks/5741.aspx</trackback:ping>
        </item>
    </channel>
</rss>