-
An article by Steve Yegge who I actually didn't know until he was included in a question session with some of the big names in the software industry a while back. A very good writer, anyway the article: http://steve-yegge.blogspot.com/2006/09/good-agile-bad-agile_27.html It makes me want to work at google...
-
Watch this and be blown away as well: http://www.wekeroad.com/actionpackintro.html A DAL which creates classes for Stored procedures, tables etc. And all that is needed to set it up is a * in a file. Home of this DAL layer: http://www.codeplex.com/Wiki/View.aspx?ProjectName=actionpack
-
Discusses common errors about: Caching and forms authentication View state and session state Profile property serialization Thread pool saturation Impersonation and profiling Keep Sites Running Smoothly By Avoiding These 10 Common ASP.NET Pitfalls
-
I've known for some time now that it's possible to use Ado.Net to read from Excel files, I didn't know it was also possible to write to them. At least I have found a workaround by using SQL server and registering Excel files as an external resource. Reading and writing from excel . Other Ado.Net tutorials...
-
Rob Howard is doing a series of video blog items ... Below are the links to the videos, they look to me quite inspiractional... Tips & Tricks #1 - Inline Editing and Content Parts (very cool features shown off here, that many people don't know about) Tips & Tricks #2 - Blogging By Email (Yes...
-
Anthem.Net v1.0 has just been released a while back. For those of you who are using Ajax.Net Pro. You might want to have a look at this: http://sourceforge.net/projects/anthem-dot-net
-
In-Place Editing with Atlas Behaviors This post demonstrates a custom Atlas script component and associated extender control to enable in-place editing (i.e., Labels that morph into TextBoxes upon focus in an AJAXish manner). Source code included... http://www.nikhilk.net/AtlasInPlaceEditSample.aspx...
-
When your on Windows xp Home Edition you can't easily host websites with IIS. There are some alternatives the most well known is the cassini webserver, this has been enhanced a bit by various party's a good example of this is: xNetserver which is a VB.Net port of Cassini with a lot of extra's built in...
-
Interesting development going on currently surrounding MySql every ones favorite sql 92 / ACID incompliant database. MySql AB has recently transfered the license of MySql from LPGL to PGL. For those not so well informed in what the difference is: "using the Library GPL permits use of the library...
-
I saw a good definition of Web 2.0 today through Curt Hibbs blog, from O'Reilly: Web 2.0 is the network as platform, spanning all connected devices; Web 2.0 applications are those that make the most of the intrinsic advantages of that platform: delivering software as a continually-updated service that...
-
The buzzwords of the moment: Linq for the .Net world, Ruby for the open source world. Jon Udel wrote the following example for the .Net world to show of the nice things about Linq: The following snippet does a three-way join across an XML data source and two CLR objects. The XML data source is the content...
-
This is a great way to add search to a website, and it's so simple that you will probably love it. The code needed: string search = string .Format( "http://beta.search.msn.com/results.aspx?q=site%3yoursitehere.com+{0}&format=rss" , HttpUtility.HtmlEncode(SearchText.Text)); RssFeed1.DataSource...