Dionoid
ALL WEB MUST SCALE!
-
Faceted search with Solr on Windows
With over 10 million hits a day, funda.nl is probably the largest ASP.NET website which uses Solr on a Windows platform.
-
QuickBlog: Free VS2005 template for a weblog application
Inspired by Scott Guthrie's MyLists example webapplication, I've made a simple (but fully functional) weblogging application in Visual Studio 2005, which you can download here (all sources included).
-
MagicAjax.NET online demo's !!
So you want to use Ajax to make your webapplications more interactive and better performing, but you don't want the hassle of writing cross-browser JavaScript?
And you also want to keep using the ASP.NET server-side programming model? -
Using Atlas to implement client-side Master-Detail dropdowns
After attending the PDC, I thought it would be cool to use Atlas for solving a common postback-overhead problem in ASP.NET : 2 connected Master-Detail dropdown lists.
-
Continuous Integration for Visual Studio 2005 Team System beta 2
As you may or may not know, the current beta 2 version of Visual Studio 2005 Team System only supports manual team builds against the Team Foundation server. I think the final release of VSTS is going to support scheduled builds (e.g. nightly builds), but I don't think continuous integration will be supported (because Microsoft don't practice CI themselves).
-
FireFox doesn't understand a DOM node-tree?
<div id="div1">
<div id="div2" onclick="alert(this.parentNode.childNodes[0].id)">clickme</div>
</div> -
Expand/Collapse EditorParts (ASP.NET 2.0 Portal Framework)
If you've been experimenting with the ASP.NET 2.0 Portal Framework (like me!), you know there are 4 out-of-the-box EditorParts that you can place in the EditorZone (the EditorZone is the Zone where you can edit a WebPart's properties). The 4 standard EditorParts are:
-
Copy & Paste WebParts (ASP.NET 2.0 portal framework)
Some developers in the ASP.NET 2.0 Forums have asked questions on how to copy a WebPart (including it's configuration) from one page to another.
-
SiteMapProvider.CurrentNode isn't aware of default.aspx documents in webfolders
I think the 'default document' option in IIS is a great way to get clean url's without those .aspx extensions. So instead of calling the url 'http://www.mysite.com/news/default.aspx', you could also call 'http://www.mysite.com/news', which will get you to the same page. This is because IIS finds the default document 'default.aspx' in the news folder.
-
Impersonation inside HttpHandlers
By using basic or integrated IIS security, you can set the security context on whose behalf the code is running to the current user by adding these two lines in your web.config: