Sign in
|
Join
Eilon Lipton's Blog
Technical blog on Microsoft ASP.NET (and AJAX and MVC).
This Blog
Home
Contact
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Tags
AJAX
ASP.NET
aspnetmvc
Atlas
c#
compilation
css
expressions
javascript
localization
MVC
objectdatasource
Routing
Speaking
templates
unit test
UpdatePanel
Visual Studio
visualstudio
Navigation
Home
Blogs
Archives
July 2010 (1)
May 2010 (1)
April 2010 (1)
March 2010 (1)
November 2009 (1)
October 2009 (2)
April 2009 (1)
March 2009 (1)
January 2009 (1)
December 2008 (1)
July 2008 (2)
April 2008 (1)
March 2008 (1)
February 2008 (1)
December 2007 (2)
November 2007 (1)
October 2007 (1)
September 2007 (2)
June 2007 (2)
May 2007 (1)
April 2007 (2)
March 2007 (1)
February 2007 (3)
January 2007 (4)
December 2006 (1)
November 2006 (5)
Pages
Suggestion Box
Browse by Tags
All Tags
»
ASP.NET
»
c#
(
RSS
)
compilation
localization
objectdatasource
Routing
unit test
Wednesday, October 07, 2009 10:38 AM
Introducing SmartyRoute: A smarty-ier way to do routing in ASP.NET applications
Inspired by ideas I have heard from people on my team (ideas that apparently I misunderstood!), I am introducing the new SmartyRoute, which provides a smarty-ier way to do routing in ASP.NET applications. The basic idea is that you can make a request...
Posted by
Eilon
|
8 comment(s)
Filed under:
ASP.NET
,
c#
,
Routing
Wednesday, April 01, 2009 3:00 AM
The String or the Cat: A New .NET Framework Library
For years applications have been built that accept user input. Most user input starts out as a string. Strings are a universal representation of arbitrary data coming into a computer. However, most data does not remain as a string for very long. User...
Posted by
Eilon
|
52 comment(s)
Filed under:
ASP.NET
,
c#
,
unit test
Tuesday, December 04, 2007 2:00 PM
How to Allow Generic Controls in ASP.NET Pages
Did you ever want to have a Repeater<Customer> control on your page? And its events were all strongly typed to recognize that each row was bound to a Customer object? Well, I came up with a way of doing it using some lesser known features of ASP...
Posted by
Eilon
|
20 comment(s)
Filed under:
ASP.NET
,
compilation
,
c#
Tuesday, June 19, 2007 8:00 PM
Changing the request culture for globalization and localization
In ASP.NET 2.0 we added several new features to make globalizing and localizing an application easier than ever before. One of the coolest features is the ability to declaratively localize entire controls as well as individual properties of controls....
Posted by
Eilon
|
5 comment(s)
Filed under:
ASP.NET
,
compilation
,
c#
,
localization
Thursday, May 31, 2007 11:00 AM
Testing your ASP.NET control (part 1 of hopefully many): ViewState
A typical ASP.NET server control will store at least some of its properties in ViewState. For example, the Label control saves the value of its Text property in ViewState so that on following postbacks the value does not need to be explicitly set again...
Posted by
Eilon
|
3 comment(s)
Filed under:
ASP.NET
,
c#
,
unit test
Thursday, April 26, 2007 11:00 AM
Using ObjectDataSource to do the dirty work for your custom data source
Since ASP.NET 2.0 was released in 2005 many of you have taken advantage of the new data source control controls . Drop a GridView on the page. Bind it to a data source. Check a few checkboxes. Run the page. Go home early! However, some of you want to...
Posted by
Eilon
|
17 comment(s)
Filed under:
ASP.NET
,
c#
,
objectdatasource
Thursday, February 15, 2007 2:41 PM
Attributes to consider applying when writing a custom control
Almost every custom control has at least one additional public property, and that public property as well as the control itself should probably have at least a few attributes applied to them. Attributes tell the designer host (Visual Studio) or the parser...
Posted by
Eilon
|
4 comment(s)
Filed under:
ASP.NET
,
c#
Thursday, January 25, 2007 11:20 AM
From the Suggestion Box: Reusing object instances with ObjectDataSource
From the suggestion box Marc Brooks asks: "More about the needed fixes for ObjectDataSource (e.g. allowing it to acquire the object instead of creating exnilo)." In fact, the ObjectDataSource already supports this functionality through its ObjectCreating...
Posted by
Eilon
|
4 comment(s)
Filed under:
ASP.NET
,
c#
,
objectdatasource
More Posts