Joe's Blog
Joseph Ghassan lives in Lebanon and build .NET Web applications for Globalvision
Sign in
|
Join
Home
Contact
RSS
Atom
Comments RSS
Search
Tags
Ajax
C#
General
Sponsors
advertise here
Navigation
Home
Blogs
Archives
February 2008 (3)
January 2008 (4)
Recent Posts
0
Comments
First Exam : Application Development Foundation .NET 2.0 (Exam 70-536) - Study Workflow
by
Joseph Ghassan
The above workflow represent the topics required to cover to pass Exam 70-536. In addition, I am reading two books : Programming Microsoft Visual C# 2005 : The Language ( Microsoft Press ) Pro C# 2008 and the .NET 3.5 Platform ( Apress )
4
Comments
My Certifications long term roadmap
by
Joseph Ghassan
I will start by Exam 70-536 and climb up to the 7th exam to acquire the MCPD : Enterprise Application Certification. It should be fun!
4
Comments
Ajax Utility methods
by
Joseph Ghassan
XMLHttpRequest Factory /* XMlHttpRequest Factory */ function XMlHttpRequestFactory() { var xmlHttp = null ; if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); //alert(xmlHttp + '[Status = ' + xmlHttp.readyState + ']' ); } else if (window.ActiveXObject...
0
Comments
Converting a number into its text presentation
by
Joseph Ghassan
I wrote this code 2 years ago, it is an interesting piece of code to convert any number between 0 and 999,999,999 into its text presentation. Just create a console application and paste this code : 1: using System; 2: using System.Collections.Generic;...
Filed under:
C#
4
Comments
Operator keyword - Operator Overloading
by
Joseph Ghassan
While studying for my MCPD, I stumbled upon the operator keyword. Operator overloading permits user-defined operator implementations to be specified for operations where one or both of the operands are of a user-defined class or struct type, For instance...
Filed under:
C#
7
Comments
In depth look at Ajax's XMLHttpRequest object - Part 1 ( Introduction)
by
Joseph Ghassan
The click-and-wait pattern has dominated for years the client/server communication but with the introduction of Ajax things have become different. The interaction of the user with an Ajax-enabled application becomes much more interactive and enjoyable...
Filed under:
Ajax
4
Comments
What a nice place to start Blogging !
by
Joseph Ghassan
I would like to thanks Joe S. and the ASP.NET team for giving us this opportunity to share our knowledge using asp.net weblogs. it is going to fun for sure!
Filed under:
General
More Posts