Joel Varty
A software architect's thoughts from
Edentity Web Systems
in Toronto, Canada.
Read my personal blog here:
joelvarty.com
Sign in
|
Join
Home
Contact
RSS
Atom
Comments RSS
Search
Tags
.Net 4.0
Agility
AJAX
Amazon
ASP.NET
Azure
C#
Chrome
Cloud
CSS
Flash
Google
HTML
IE9
IIS
IIS 7
iPad
iPhone
Javascript
jQuery
JSON
jTemplates
LINQ
LINQ-SQL
Live Writer
Mobile
MVC
OAuth
ODATA
OpenID
Output Cache
Safari
Silverlight
SQL Server
SQL Server 2005
TFS
Threading
Trace
TSQL
Twitter
Video
Video Games
Visual Studio
VS 2010
WCF
Windows 7
WPF
Sponsors
advertise here
News
Read my personal blog here:
joelvarty.com
Navigation
Home
Blogs
Archives
July 2011 (1)
January 2011 (1)
December 2010 (1)
November 2010 (1)
October 2010 (1)
September 2010 (2)
August 2010 (3)
July 2010 (3)
June 2010 (3)
May 2010 (6)
April 2010 (5)
March 2010 (2)
February 2010 (1)
December 2009 (2)
November 2009 (2)
October 2009 (3)
September 2009 (5)
August 2009 (2)
July 2009 (1)
June 2009 (3)
May 2009 (5)
April 2009 (4)
March 2009 (4)
February 2009 (5)
January 2009 (6)
December 2008 (1)
November 2008 (6)
October 2008 (3)
September 2008 (4)
July 2008 (3)
June 2008 (1)
March 2008 (2)
February 2008 (2)
January 2008 (2)
March 2009 - Posts
50
Comments
Force IE7 Compatibility Mode in IE8 with IIS settings
by
joelvarty
There a ton of examples on the web of how you can force IE8 into IE7 compatibility mode using a meta tag in the header. This tag needs to be first in the <head> (before any css): <meta http-equiv= "X-UA-Compatible" content= "IE...
1
Comments
Don’t use alert() on AJAX webservice errors!
by
joelvarty
Even if you want the user to be notified of the fact that an AJAX webservice call has errored out, don’t use an alert() to do it. Why? Lots of reasons… here are a few: If you have one of more calls that error out before the user can dismiss the...
Filed under:
ASP.NET
,
AJAX
6
Comments
LINQ-SQL – Incorrect results from Count() from Lambda expressions
by
joelvarty
Check out the following C# code: using (MyDataContext db = new MyDataContext()) { int count1 = db.MyTable.Count(t=> t.IsActive == true ); int count2 = db.MyTable.Select(t => t.IsActive == true ).Count(); } Judging by you what you see...
Filed under:
ASP.NET
,
LINQ
0
Comments
Mini Video Game Review: Flower (PS3)
by
joelvarty
I have never done a game review on here before, but I downloaded this game on the weekend and my daughter and I played through a few levels. My daughter loves video games as much as I do, and its a real challenge to get game-time with her where we're...
Filed under:
Video Games
More Posts