Archive for June, 2007
Monday, June 25th, 2007
I learned a handy trick which solved couple of problems today. CGI variables accessible in ColdFusion, like CGI.HTTP_USER_AGENT, which tells you what browser someone is using to look at your website.
The code below will tell you what CGI variables are available on your server. Just put it in a page ...
Posted in ColdFusion | No Comments »
Thursday, June 21st, 2007
C Sharp provides neat functionality to build a console application. The following example is a really simple one using variables with classes defined.
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
string firstName;
string lastName;
Variables(out firstName, out lastName);
Console.WriteLine(firstName);
Console.WriteLine("Please, press enter to contineue");
Console.ReadLine();
...
Posted in C Sharp | No Comments »
Thursday, June 21st, 2007
People who haven't downloaded CF8, get the beta now and get feel to it. Also,
I know that HostMySite.com is planning to upgrade. In addition, they are offering free CF8 accounts for beta testing!
Posted in ColdFusion | No Comments »
Monday, June 18th, 2007
Let me get this week started with a basic example of WinForm application. I know, i should've done a smoother transition from coldfusion to c#, but it has been a tough week understanding with so much less community work in coldfusion communities.
Here is our C# application code:
using System;
using System.Windows.Forms;
public class ...
Posted in C Sharp | No Comments »
Sunday, June 17th, 2007
I will start posting some post related to C Sharp and visual studio in upcoming weeks, i would highly recommand grabbing this free developer stuff if you dont already have:
http://msdn.microsoft.com/vstudio/express/downloads/
Posted in C Sharp | No Comments »
Wednesday, June 13th, 2007
After uninstalling the previous version of ColdFusion 7, it took me around 10-15 minutes to finish installing ColdFusion 8.
First, let me start off with cfwindow tag example, it was actually real deal:
Posted in ColdFusion | 1 Comment »
Wednesday, June 13th, 2007
A question then occurred to me about the trial period. You have the option to install ColdFusion 8 as Developer Edition, Serial-licensed Edition or Trial Enterprise. The former won’t work for a public site (IP address restrictions). The middle option won’t work either - ColdFusion 8 is not yet on ...
Posted in ColdFusion | No Comments »
Wednesday, June 13th, 2007
Oh, wait a minue, lets start things off with introduction. Well, i'm a student at Mt Sac and have experience in ColdFusion for over a year now. I'm currently learning C#, lets see where my future headed.
Posted in Misc | 1 Comment »