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)
January 2009 - Posts
4
Comments
IIS 7, Dynamic Compression and tons of AJAX web services means massive performance increases
by
joelvarty
I work on a product called Agility CMS . Agility CMS is a hosted web content management system - including a web application dedicated to actually editing website content, pages, sitemaps and other good stuff. Last week we updated the app moved the whole...
Filed under:
ASP.NET
,
AJAX
,
Agility
,
IIS 7
10
Comments
javascript:void() will throw a javascript error - you need to use javascript:void(0)
by
joelvarty
This is one of those javascript errors that makes me shake my head a bit, but with more and more Ajax style apps being built in Asp.Net, I have started seeing this quite a bit. If you have something like this: <a href="javascript:void(...
Filed under:
ASP.NET
,
AJAX
,
Javascript
2
Comments
TSQL - Distance in kilometers between 2 points, given the latitude and longitude
by
joelvarty
It's always good to know the distance between 2 points. Here's the SQL to get you started - notice the @dtor constant - this will get you the return value in kilometers. DECLARE @dtor float, ...
Filed under:
ASP.NET
,
TSQL
0
Comments
Control Output Caching and RegisterClientScriptInclude
by
joelvarty
Always remember that if you are using Control output caching, RegisterClientScriptInclude will NOT run if the used control is returning a cached version. This also goes for any controls (user or custom) nested within your ascx. The workaround? You...
Filed under:
ASP.NET
,
Output Cache
1
Comments
Binding an RSS Feed with an XmlDataSource
by
joelvarty
I'm sure this has been blogged on a zillion times before, but this is super easy. Look! Here is the code as text (so you can copy and paste :) <asp:XmlDataSource ID="xmlRSS" ...
3
Comments
For WCF Services hosted in non IIS apps - add permissions for a user to change the IIS namespace reservations
by
joelvarty
If you are hosting a WCF services in a console app, windows service or any other non-IIS application, you need to listen on a particular url address. A normal user running an app or service doesn't have permission to do this unless that user is...
Filed under:
Visual Studio
,
WCF
More Posts