<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>WebLog of Ken Cox - All Comments</title><link>http://weblogs.asp.net/kencox/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: Testing Sites Against IE 6, IE 7, and IE 8 (beta 2)</title><link>http://weblogs.asp.net/kencox/archive/2008/08/29/testing-sites-against-ie-6-ie-7-and-ie-8-beta-2.aspx#6576602</link><pubDate>Fri, 29 Aug 2008 19:00:13 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6576602</guid><dc:creator>Joe Chung</dc:creator><description>&lt;p&gt;I would rather test against the real thing than a simulation. &amp;nbsp;Hacking multiple versions of IE to work in a single OS instance also isn't reliable.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6576602" width="1" height="1"&gt;</description></item><item><title>re: Testing Sites Against IE 6, IE 7, and IE 8 (beta 2)</title><link>http://weblogs.asp.net/kencox/archive/2008/08/29/testing-sites-against-ie-6-ie-7-and-ie-8-beta-2.aspx#6576020</link><pubDate>Fri, 29 Aug 2008 16:22:21 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6576020</guid><dc:creator>dukebaby</dc:creator><description>&lt;p&gt;I've found DebugBar's IETester to be very hand for this scenerio.&lt;/p&gt;
&lt;p&gt;It is a simple program that simulates all versions of IE.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.my-debugbar.com/wiki/IETester/HomePage"&gt;www.my-debugbar.com/.../HomePage&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6576020" width="1" height="1"&gt;</description></item><item><title>re: IE6 Hanging after Clearing the Cache: Remove AJAX Script Compression Too</title><link>http://weblogs.asp.net/kencox/archive/2008/01/23/ie6-hanging-after-clearing-the-cache-remove-ajax-script-compression-too.aspx#6575927</link><pubDate>Fri, 29 Aug 2008 16:00:03 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6575927</guid><dc:creator>StormSilver</dc:creator><description>&lt;p&gt;We had the exact same problem, although we are doing a Ruby on Rails installation totally unrelated to ASP. We discovered that a &amp;quot;Virgin&amp;quot; IE, as you say, would hang for about 5 minutes per chunk of content that we were loading. Although we had disabled gzip compression in Apache for IE6, we found the problem still occurred intermittently. We are using Akamai in front of our servers and it turned out that even with Akamai set to never serve gzipped content, if the origin server sent the content gzipped, that is how Akamai would serve it. Therefore if a user were to hit our server using Firefox, they would receive compressed scripts, and then subsequent users using IE6 would also receive those compressed scripts. The solution was to turn off gzip compression for everyone, everywhere, all the time.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6575927" width="1" height="1"&gt;</description></item><item><title>re: Converting VB LINQ to C# LINQ</title><link>http://weblogs.asp.net/kencox/archive/2008/07/30/converting-vb-linq-to-c-linq.aspx#6562259</link><pubDate>Mon, 25 Aug 2008 05:05:48 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6562259</guid><dc:creator>Dave Doknjas</dc:creator><description>&lt;p&gt;Kudos to Dave at VB Conversions (our honorable competitor) for getting the jump on us regarding many types of LINQ conversions, but a simpler conversion is just:&lt;/p&gt;
&lt;p&gt;var q = from c in dc.categories&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from p in dc.products&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;where c.CategoryID == p.CategoryID&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;group p by c.CategoryName into g&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;select new {cgname = g.Key, prdcts = g};&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6562259" width="1" height="1"&gt;</description></item><item><title>re: Converting VB LINQ to C# LINQ</title><link>http://weblogs.asp.net/kencox/archive/2008/07/30/converting-vb-linq-to-c-linq.aspx#6557017</link><pubDate>Sat, 23 Aug 2008 19:14:38 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6557017</guid><dc:creator>Dave</dc:creator><description>&lt;p&gt;Ken, thanks for pointing out the equal sign problem in the LINQ Where clause conversions. &lt;/p&gt;
&lt;p&gt;It turns out that this bug only happens when there's a &amp;quot;Select New With&amp;quot; clause in the LINQ statement. &amp;nbsp;The converter thought the Where clause equal sign was one of the equal signs in the With clause (which should be converted to &amp;quot;=&amp;quot;).&lt;/p&gt;
&lt;p&gt;This has been fixed in the latest version of the VB.Net to C# Converter, which was just released today. &amp;nbsp;If you find any more problems, please let me know and I'll get a fix out asap. Thanks!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6557017" width="1" height="1"&gt;</description></item><item><title>re: Visual Studio 2008 SP1 Adds JavaScript Formatting</title><link>http://weblogs.asp.net/kencox/archive/2008/08/13/visual-studio-2008-sp1-adds-javascript-formatting.aspx#6536488</link><pubDate>Tue, 19 Aug 2008 02:46:01 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6536488</guid><dc:creator>Edward Ng</dc:creator><description>&lt;p&gt;The VS2008 SP1 JScript formatter sucks !&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6536488" width="1" height="1"&gt;</description></item><item><title>Enabling JavaScript Intellisense In External Libraries Using Microsoft Visual Studio 2008 Service Pack 1</title><link>http://weblogs.asp.net/kencox/archive/2008/08/14/enabling-javascript-intellisense-in-external-libraries.aspx#6529968</link><pubDate>Sun, 17 Aug 2008 08:56:49 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6529968</guid><dc:creator>mandown</dc:creator><description>&lt;p&gt;This is pretty easy to get working in Microsoft Visual Studio 2008 Service Pack 1. In order to get this working you need to tell Intellisense the location of the libraries you are using. Ken Cox has written a great article on how to get this working.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6529968" width="1" height="1"&gt;</description></item><item><title>Enabling Javascript Intellisense In External Libraries</title><link>http://weblogs.asp.net/kencox/archive/2008/08/14/enabling-javascript-intellisense-in-external-libraries.aspx#6518746</link><pubDate>Thu, 14 Aug 2008 18:57:43 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6518746</guid><dc:creator>DotNetKicks.com</dc:creator><description>&lt;p&gt;You've been kicked (a good thing) - Trackback from DotNetKicks.com&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6518746" width="1" height="1"&gt;</description></item><item><title>Enabling JavaScript IntelliSense in External Libraries - WebLog of Ken Cox</title><link>http://weblogs.asp.net/kencox/archive/2008/08/14/enabling-javascript-intellisense-in-external-libraries.aspx#6518555</link><pubDate>Thu, 14 Aug 2008 18:22:04 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6518555</guid><dc:creator>Enabling JavaScript IntelliSense in External Libraries - WebLog of Ken Cox</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Enabling JavaScript IntelliSense in External Libraries - WebLog of Ken Cox&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6518555" width="1" height="1"&gt;</description></item><item><title>re: Visual Studio 2008 SP1 Adds JavaScript Formatting</title><link>http://weblogs.asp.net/kencox/archive/2008/08/13/visual-studio-2008-sp1-adds-javascript-formatting.aspx#6518507</link><pubDate>Thu, 14 Aug 2008 18:07:51 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6518507</guid><dc:creator>Ken Cox [MVP]</dc:creator><description>&lt;p&gt;@Dominic: See this post for enabling JavaScript IntelliSense:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://weblogs.asp.net/kencox/archive/2008/08/14/enabling-javascript-intellisense-in-external-libraries.aspx"&gt;weblogs.asp.net/.../enabling-javascript-intellisense-in-external-libraries.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Ken&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6518507" width="1" height="1"&gt;</description></item></channel></rss>