nik

If you work with a lot of RegEx expressions in .Net, here are two excellent resources:

RegEx Designer: http://www.gotdotnet.com/workspaces/workspace.aspx?id=01e0dfb7-0182-45cd-94f7-2ed2df2504a9

Regular-Expressions site: http://www.regular-expressions.info/dotnet.html

There was a question in the DNN forums today about how to display a wait indicator while an IFrame was loading its contents. My solution:

_ResultsFrame” onLoad=”toggleProgress(‘<%= ClientID %>_ProgressBar’,’<%= ClientID %>_ResultsFrame’)” src=”http://www.dotnetnuke.com” style=”display:none”>

If you have nested ASP.Net applications, any HttpModules defined in the web.config of parent apps propogate down to the children. This can be desirable in some situations, but totally unwanted in others.

The easy way to eliminate the impact of parent HttpModules is to add a element in the child app’s web.config. Sounds simple enough, until you try it.

Turns out that because of the way ASP.Net processes the web.config, even if you are clearing out HttpModules in a child app’s web.config, you still need to have the requisite assemblies for the HttpModules in the child app’s bin folder. Otherwise the child app will not run.

Although WinXP does not support more than one active virtual website, it allows you to define as many as you want. Here is a nice utility http://www.firstserved.net/services/iisadmin.php that lets you switch websites on XP quickly and easily.

I have done quite a bit of research into online photo albums and somehow seemed to have missed one (my excuse: it’s in beta). Check out Flickr. I like the U.I. … very clean. The feature I really liked is the ability to comment within a photo by highlighting an area. They call it “Notes and Tags” which is a dumb label for an excellent feature.