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)
Browse by Tags
All Tags
»
ASP.NET
»
Javascript
(
RSS
)
AJAX
Chrome
IE9
iPad
iPhone
jQuery
JSON
Server Controls vs Plugins
by
joelvarty
I think the ASP.NET world has changed completely as far as reusable code is concerned. Let’s start with a bit of background… Server Controls I remember when making reusable code in ASP.NET meant writing custom server controls that had all...
Filed under:
ASP.NET
,
AJAX
,
Javascript
,
jQuery
Getting comfortable with Javascript callbacks
by
joelvarty
It seems every language has it’s own way of implementing callbacks. Back in the VB days (daze?) we used the addressof operator and all kinds of win32 stuff to get app and activex control to do what we wanted. In C#, we have the delegate (and the anonymous...
Filed under:
ASP.NET
,
AJAX
,
Javascript
,
jQuery
JavaScript Compilation: Is this what will turn the web into the new desktop?
by
joelvarty
The Web is the New Desktop Can we finally expect to see web browser truly competing with native apps? IE 9 does JavaScript in the background on the first load of a page, running in non-compiled mode until the scripts are ready, and then they run...
Filed under:
ASP.NET
,
Javascript
,
iPad
,
iPhone
,
IE9
,
Chrome
jQuery Masonry – the answer to vertical flow layout
by
joelvarty
“Masonry is a layout plugin for jQuery. Think of it as the flip side of CSS floats. Whereas floating arranges elements horizontally then vertically, Masonry arranges elements vertically then horizontally according to a grid. The result minimizes vertical...
Filed under:
ASP.NET
,
Javascript
,
jQuery
ResolveUrl in Javascript
by
joelvarty
This is something that is super easy, yet I get asked about it quite often. Here’s how you do it: In the master page for the site, put this: < script type ="text/javascript" > var baseUrl = "<%= ResolveUrl(" ~/ ") %>"...
Filed under:
ASP.NET
,
Javascript
Using the Generic Dictionary with JSON web services…
by
joelvarty
If you want to pass a name/value collection of untyped data to a webservice with JSON, do it like this guys, Joost van Schaik, says: http://dotnetbyexample.blogspot.com/2008/03/json-services-revisited-using.html Here’s the meat of it really – how...
Filed under:
ASP.NET
,
AJAX
,
Javascript
,
JSON
JQuery - get a handle on a server element in javascript without using <%= elem.ClientID %>
by
joelvarty
One of the things I see a lot of is code that looks like this: < asp:CheckBox ID ="chkEnable" Text ="My Checkbox" runat ="server" /> < script type ="text/javascript" > var chkEnable = $get( "<...
Filed under:
ASP.NET
,
Javascript
,
jQuery
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
More Posts