Archive for September, 2008


Creating A Very Simple Photo Gallery

Sunday, September 21st, 2008

simpleImageGallery
I’m going to show you how to build a very simple photo gallery from images you have uploaded.
In this example I’m going to use photos I found online. As you can see I love airplanes.
So lets get it done.

(more…)

Programming Buttons In Tables and Changing Their Color

Saturday, September 20th, 2008

We are going to build a 5 by 5 table holding 25 buttons. Under the table we have radio buttons which will change the button colors when selected.

(more…)

Make A Simple Font Changer Web Application

Saturday, September 20th, 2008

In this simple quick note I’m going to demonstrate how to make a simple font changing web application.
The application will search threw your computer font library and list them for you. You can then change the font type and size of the text above it as shown in the picture.

(more…)

Live Ticking Clock and Passing Variables Using Ajax in ASP.NET 2008

Monday, September 8th, 2008



As you already know I’m getting into ASP.NET using Microsoft Visual Studio 2008. It´s great, you can do so much with it.

One of the things that I like the most is how much easier it is to develop Ajax web applications on it. This is because of its connectivity and how nice and user friendly it is. You don’t need to write more than what is needed to get the job done.

This is one of my quick notes on how to make a simple Ajax request/post method. We have a text field, label and a button. When you type something in that text field the value of the text field will be displayed in the label without reloading the page (Ajax) after pressing the button.

(more…)

ASP.NET: Live Visitors Count Online

Saturday, September 6th, 2008

This is a very simple tip on how to count live visitors on your site right now using sessions.

You should have a bit of knowledge about sessions in ASP.NET. You can read a short tip on that in this site if you need a quick refresh about sessions.

(more…)

Microsoft Visual Studio 2008: First Look (Sessions & Variables)

Tuesday, September 2nd, 2008

Microsoft Visual Studio 2008 is something I was skeptical about when I first started working with it. I was more passionate for Eclipse and the Java environment because that’s where I was working most of the time on and did not take a closer look at Microsoft´s IDE which I’m about to work on for the next two years.
When I knew I was about to leave Eclipse and Java for ASP.NET and Microsoft Visual Studio 2008 I was in shock for a short of time.

This is the point where you are going to learn a new language and a new way to work although I have knowledge of other languages like JavaScript for instance. I thought it is going to be very difficult and hard because I never have used Microsoft’s Developer Tools or any of their languages, I usually use my Mac to develop pages in a Fast programming Notepad like application or the Eclipse IDE for school projects in Java.
Now as we speak I’m getting into C# and Visual Studio. I started to use this magnificent tool for over 2 months now and I’m glad to say that I’m starting to like it allot. It’s amazing what Microsoft have provided for us developers.

You have a simple C# API, documentations and tutorials online to help you out. And the best thing of all is that C# is actually very close to the Java language that we learned in school. So syntaxes in C# are piece of cake.

Here is some of my quick notes on sessions and saving variables between them. How to declare a variable to store in a session so you can retrieve it and print it out to a label for the user dynamically.
Let the fun begin !

(more…)