I ran into an issue trying to utilize .NET’s Server.Transfer method attempting to pass variables from one form, located in a sub directory, to another form, located in a different sub directory. Passing .NET’s Server.Transfer method an absolute path of the desired location should have been enough to redirect the browser, but (of course) it [...]
Archive | Development RSS feed for this section
Closing Slashes and Cold Fusion Tags
May 26, 2010
A couple of developers and I have been discussing the practice of adding a closing slash to single line Cold Fusion tags. IE:
<cfset variables.sexyLady = "Olivia Munn">
<!— Vs. —>
<cfset variables.sexyLady = "Olivia Munn" />
Some are of the camp that the closing slash is an extra key stroke and a waste of time. Others, like myself, [...]
Displaying .NET User Controls within Pages that Inherit from a Master Page
April 16, 2010
I ran across an odd situation this morning regarding a web application I’m building. The business rules for the application calls for a certain form to be used during multiple transactions — hence multiple pages. Rather than creating the same form elements multiple times, I wanted to take advantage of .NET’s reusable code flavor: Web [...]
Correcting the Error: Failed to Access IIS Metabase
April 13, 2010
I recently FUBAR’ed my computer at work. I’m not sure exactly how or why my system went down, but I the trigger for the crash was uninstalling the Xpise application. I the application worked very well while it was installed — I was using it for well over 6 months without issue — but when [...]
Obtaining the Current Row and Row Count from .NET, Data-bound Controls
April 6, 2010
In my current project, I needed a the ability to output the current iteration while traversing through data-bound control as well as the report total sum of rows bound to the item using .NET. I needed something comparable to CurrentRow and RecordCount methods built into the Coldfusion query object.
I’m not use why these bits of [...]







July 5, 2010
0 Comments