Wednesday, February 09, 2005
by Nik Kalyani
Wednesday, February 09, 2005 12:36:15 PM (Pacific Standard Time, UTC-08:00)

Today has been frustrating. I have been looking for a decent component that can accept a URL and generate a PDF. There are many available, but they all have server-based licensing. Does anyone know of a component that will do that, has royalty-free licensing and costs less than $1,000?

 

 Monday, February 07, 2005
by Nik Kalyani
Monday, February 07, 2005 11:10:19 PM (Pacific Standard Time, UTC-08:00)

I recently switched to Das Blog as my blogging software and so far I am loving it. It has all the features one expects and then some.

Since DotNetNuke lacks a good blogger, I have started a project to make Das Blog into a DNN module. There are several challenges to this, and over the coming weeks, as I delve deeper into this project, I will document my findings here.

Just to be safe, I asked Omar Shanine for permission, and he was kind enough to grant it.

So off we go...

 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    

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: 214
This Year: 32
This Month: 0
This Week: 0
Comments: 238
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