Dan Wahlin's WebLog
ASP.NET, AJAX, Silverlight and Web Services Exploration
Sign in
|
Join
Home
About
RSS
Atom
Comments RSS
Search
Tags
.NET
ADO.NET
Animations
Architecture
ASP.NET
ASP.NET AJAX
ASP.NET MVC
C#
Entity Framework
Expression Blend
GridView
Instinct
iPhone
Java
jQuery
JSON
Lambdas
LINQ
Music
RIA Services
SharePoint
Silverlight
Sockets
SQL Server
Unit Tests
Video
WCF
Web Services
Windows Mobile
WPF
XML
News
Navigation
Home
Blogs
Archives
November 2009 (1)
September 2009 (1)
August 2009 (5)
July 2009 (8)
June 2009 (4)
May 2009 (10)
April 2009 (6)
March 2009 (4)
February 2009 (4)
January 2009 (5)
December 2008 (4)
November 2008 (5)
October 2008 (6)
September 2008 (6)
August 2008 (4)
July 2008 (3)
June 2008 (5)
May 2008 (10)
April 2008 (7)
March 2008 (7)
February 2008 (9)
January 2008 (8)
December 2007 (5)
November 2007 (3)
October 2007 (1)
September 2007 (12)
August 2007 (8)
July 2007 (17)
June 2007 (8)
May 2007 (2)
April 2007 (8)
March 2007 (8)
February 2007 (8)
January 2007 (4)
December 2006 (9)
November 2006 (10)
October 2006 (13)
September 2006 (10)
August 2006 (6)
July 2006 (1)
June 2006 (2)
May 2006 (3)
April 2006 (3)
March 2006 (1)
February 2006 (1)
November 2005 (6)
October 2005 (3)
September 2005 (1)
June 2005 (1)
April 2005 (3)
March 2005 (2)
February 2005 (3)
January 2005 (3)
December 2004 (1)
November 2004 (3)
October 2004 (7)
Links
XML for ASP.NET Developers
Interface Technical Training
My Music
Videos
July 2009 - Posts
9
Comments
Making Silverlight 3 Application Code More Compatible with Blend
by
dwahlin
Expression Blend 3 is a great tool for creating Silverlight or WPF user interfaces using design time tools and controls. If you haven’t tried version 3 you’re really missing out since it adds a ton of new time-saving features. While I really enjoy working...
Filed under:
.NET
,
Silverlight
,
Expression Blend
10
Comments
Previewing Websites in Multiple Browsers with Expression Web 3’s SuperPreview
by
dwahlin
Expression Studio 3 has a great new feature that was announced and demonstrated back at the Mix 09 conference called SuperPreview. It allows you to compare how a page looks across multiple browsers including IE6, IE7, IE8 and FireFox (with more...
Filed under:
ASP.NET
,
.NET
6
Comments
Running a WCF Service on IIS 7
by
dwahlin
I was trying to get a WCF service going on my Windows 7 machine tonight that I call from a Silverlight 3 application and ran into the following error when trying to view the .svc file in the browser: HTTP Error 404.3 - Not Found The page you are requesting...
Filed under:
.NET
,
WCF
10
Comments
Using Element to Element Binding for ToolTips in Silverlight 3
by
dwahlin
Silverlight 3 provides a new feature called “element to element” binding that allows one element to bind to another element’s property. It’s really useful when you want to tie two objects together so that when one object changes the other changes as well...
Filed under:
.NET
,
Silverlight
17
Comments
Simplifying the Process of Calling a WCF Service from Silverlight (or any .NET Application)
by
dwahlin
I’m currently working on a large Silverlight 3 project for a client that will ultimately have hundreds of calls from Silverlight to WCF service operations. Initially I did things the standard way which is to define a client-side class that’s used to call...
Filed under:
.NET
,
Silverlight
9
Comments
Silverlight 3 Released – Exciting Stuff Here!
by
dwahlin
Silverlight 3 is now officially released and available for download! It’s definitely exciting for me personally because my company has been working on a Silverlight 3 client application for the past few months and really enjoyed the new features. Here...
Filed under:
.NET
,
Silverlight
3
Comments
Validating Properties in Silverlight Classes
by
dwahlin
Silverlight classes rely on the INotifyPropertyChanged interface and associated PropertyChanged event it contains to ensure that data binding stays up-to-date in an application. It’s a great feature because you don’t have to worry about ensuring that...
Filed under:
.NET
,
Silverlight
7
Comments
Creating a ComboBox Style AutoCompleteBox Control in Silverlight
by
dwahlin
Silverlight’s AutoCompleteBox control provides a nice way to filter a list of items as the user types into a TextBox. If you haven’t used it before you can see an example here . In a previous post I showed how you could customize AutoCompleteBox to make...
Filed under:
.NET
,
Silverlight
More Posts