Sunday, February 06, 2005
by Nik Kalyani
Sunday, February 06, 2005 5:50:33 PM (Pacific Standard Time, UTC-08:00)

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

#    Comments [0] - Trackback    

by Nik Kalyani
Sunday, February 06, 2005 5:46:11 PM (Pacific Standard Time, UTC-08:00)

Got my attention with the helpful tips for customizing the VS.Net environment:

http://www.sellsbrothers.com/spout/default.aspx?content=archive.htm#vs.netfunfacts

#    Comments [0] - Trackback    

 Monday, January 31, 2005
by Nik Kalyani
Monday, January 31, 2005 8:55:44 PM (Pacific Standard Time, UTC-08:00)

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:

<script language="Javascript">


function toggleProgress(progressId, iframeId)
{
     objProgress = document.getElementById(progressId);
     objIframe = document.getElementById(iframeId);

     if ((objProgress) && (objIframe))
     {
           objProgress.style.display = (objProgress.style.display == "none" ? "block" : "none");
           objIframe.style.display = (objIframe.style.display == "none" ? "block" : "none");
     }
}

</script>

<div align="center"><img id="<%= ClientID %>_ProgressBar" src="<%= TemplateSourceDirectory %>/images/progress.gif" style="display:block" /></div>

<iframe id="<%= ClientID %>_ResultsFrame" onLoad="toggleProgress('<%= ClientID %>_ProgressBar','<%= ClientID %>_ResultsFrame')" src="http://www.dotnetnuke.com" style="display:none"></iframe>

#    Comments [0] - Trackback    

by Nik Kalyani
Monday, January 31, 2005 8:33:45 PM (Pacific Standard Time, UTC-08:00)

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.

 Sunday, January 30, 2005
by Nik Kalyani
Sunday, January 30, 2005 9:11:26 PM (Pacific Standard Time, UTC-08:00)
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.
#    Comments [0] - Trackback    

RSS feed
Search and Links
Bling

View Nik Kalyani's profile on LinkedIn

Contact me: nik*kalyani.com (replace "*")

TechBubble
www.flickr.com
This is a Flickr badge showing public photos from techbubble. Make your own badge here.
Statistics
Total Posts: 204
This Year: 22
This Month: 0
This Week: 0
Comments: 231
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008
Nik Kalyani
Sign In
All Content © 2008, Nik Kalyani