help.net
<font size="2"><br />Musing on .Net</font>
-
No more declarative programming please
Writing ASP.NET 2.0 applications is harder than before. Yes you read well, harder. If you are a newbie or an amateur of declarative programming, you're safe. I am not an expert, I place myself in the middle ground, but yes damn it it's hard.
-
Speeding up Visual Studio 2005
Fredrik Fahlstad give some good tips if you find VS 2005 a bit sluggish.
-
Debugging Microsoft Ajax with Firefox, one small recurrent issue
I am debugging regularly my Ajax code with Firefox and Firebug and I have constantly Firebug stopping on the same portion of ajax client script.
-
BlogEngine.net any good?
BlogEngine.NET is an open source .NET blogging project that was born out of desire for a better blog platform. A blog platform with less complexity, easy customization, and one that takes advantage of the latest .NET features.
-
Building a User Control that displays RSS feeds
Introduction
Displaying data in ASP.NET verison 1.x required writing code to programmatically retrieve the data and then more code to bind the data to a data Web control, such as the DataGrid. ASP.NET 2.0 simplifies the process of working with data through its data source controls, which allow data to be retrieved and even modified through declarative means. In short, ASP.NET 2.0's data source controls permit developers to work with and display data without having to write a line of code. For a more thorough look at working with data in ASP.NET 2.0, be sure to check out my Accessing and Updating Data in ASP.NET 2.0 article series.Different data source controls are designed to work with different types of data. The XmlDataSource control, as its name implies, is designed for working with XML data. By setting a few properties, it is possible to retrieve XML data from a remote URL or local file, transform it using XSLT, and filter it using an XPath expression, all without writing a line of code. This data can then be displayed by binding it to a data Web control and XPath databinding statements can be used to bind specific chunks of the resulting XML to other Web controls.
In this article we will see just how easy it is to display XML data in an ASP.NET 2.0 page. In particular, we will build a User Control that will display the contents of an RSS feed. Once created, this User Control can be dragged onto the Design surface of any ASP.NET page in your project and configured to display the contents of a particular RSS feed by simply setting the control's
Url
property to the URL of the RSS feed. -
ModalPopup Extender with PostBack and Set Focus
This article explains about the Asp.Net AjaxControlToolkit's ModalPopup with Postback and Focus setting methodology.
-
GIF Image Color Quantizer, now with safe goodness
I am using in different projects the nice Quantizer class, a blessing if you need to render clear GIF images dynamically.
-
Geek baby name;-)
Well we see that done already before, just heard that Scoble was thinking about Google for the name of his baby, but I can't find anything better than this:
-
ASP.NET Ajax Client Life-cycle events cheat sheet
In Microsoft AJAX, the order of events on the client side always confused me. There were various objects involved in the client life cycle, and I didn’t understand which events fired when. Milan Negovan distilled whatever documentation he found into a “cheat sheet” to illustrate the flow of events.
-
Chess.NET
Interesting to learn some principles on OOP!