Wely Lau
Journey to the cloud
See also:
Other Geeks@INDC
Sign in
|
Join
|
Help
Home
Contact
About
RSS
Atom
Comments RSS
Search
Recent Posts
Migrating My Blog to http://wely-lau.net (Wordpress on Windows Azure)
A Deep Look inside Windows Azure Virtual Machines
Various Options to Manage Session State in Windows Azure
Managing Timezone in SQL Azure
Setting Timezone in Windows Azure
Deploying and Monitoring Windows Azure Application
SQL Azure Diagnostic Tool
Combining Web and Worker Role by Utilizing Worker Role Concept
Establishing Remote Desktop to Windows Azure Instance – Part 2
Establishing Remote Desktop to Windows Azure Instance – Part 1
Tags
.NET
.NET 3.0
.NET 3.5
.NET 3.5 SP1
.NET 4.0
.NET Programming Curriculum
Ajax
Architecture
ASP.NET
ASP.NET 4.0
Azure AppFabric
Azure Connect How-to
Azure CTP
AzureUG.SG
Bandung
Binus
BizSpark
C#
C# 3.0
C# 4.0
Certificaction
Community Sever
Competition
Design Pattern
Developer Kit
DLR
Dynamic Data
eBook
Enterprise Library
Event
Excel
Expression
Geeks Portal
INDC
Internet Explorer 8
LibraLINQ
LINQ
LINQ to SQL
Logo
MEF
Migration to Windows Azure
Miscellaneous
MSDN
MSDN Day
MSDN Flash
MUGI
MVP
NonTechnical
NTU
Office 2007
OpenXML
Parallel Extension
Parallel Extension Series
Pattern and Practices
Personal
Presentation Tips
Ramp Up
Refactoring
Resources
SharePoint
Silverlight
SQL Azure
SubSonic
TechNet
TechNet Flash
Technology
Tester
Training Kit
VB.NET
Visual Basic
Visual Studio 2010
VS 2008
VSTO
VSTS
Web
Windows 7
Windows Azure
Windows Azure Connect
Windows Azure Platform
Windows Communication Foundation
Windows Live
Windows Management Instrumetation
Windows Presentation Foundation
Word
Workflow Foundation
WSS-Id
News
Navigation
Home
Blogs
Videos
Curriculum
eBooks
Jobs
Forum
Downloads
Archives
September 2011 (2)
August 2011 (1)
July 2011 (1)
June 2011 (1)
May 2011 (2)
April 2011 (4)
March 2011 (1)
February 2011 (3)
January 2011 (2)
December 2010 (7)
November 2010 (3)
October 2010 (5)
September 2010 (4)
August 2010 (5)
June 2010 (1)
May 2010 (2)
April 2010 (4)
March 2010 (2)
February 2010 (2)
January 2010 (8)
October 2009 (1)
September 2009 (1)
August 2009 (1)
July 2009 (4)
June 2009 (10)
May 2009 (2)
April 2009 (10)
March 2009 (7)
February 2009 (7)
January 2009 (9)
December 2008 (3)
November 2008 (6)
October 2008 (9)
September 2008 (13)
August 2008 (3)
July 2008 (3)
June 2008 (6)
May 2008 (5)
April 2008 (2)
January 2008 (1)
December 2007 (2)
November 2007 (1)
October 2007 (2)
September 2007 (2)
August 2007 (1)
July 2007 (1)
June 2007 (2)
March 2007 (3)
Microsoft Resources
Silverlight
Windows Client .NET
ASP.NET
IIS
.NET Fx 3.0
Local Resources
INDC
BinaISV
WSS Indonesia
SQL Server Indo
Other Resources
4 Guys from Rolla
CodePlex
Code Project
Browse by Tags
All Tags
»
.NET
(
RSS
)
Ajax
ASP.NET
C#
C# 3.0
Excel
Technology
VS 2008
Web
Microsoft .NET New Logo
by
Wely
Seperti yang diberitakan oleh Scott Hanselman , Microsoft .NET sekarang punya logo baru. Logo Microsoft .NET yang lama telah berumur 8 tahun sejak tahun 2000, .NET pertama kali lahir. Berbarengan dengan PDC tahun ini , Microsoft menggantikan logo mereka...
Filed under:
.NET
Read Excel File from .NET
by
Wely
Microsoft Excel has been widely used in office and business application. When you are building enterprise business application that used to do something with excel, you need to integrate your application with excel. One of the most simple step is reading...
Filed under:
.NET
,
Excel
The evolution of Delegate, Anonymous Method, Lambda Expression
by
Wely
In this opportunity, I am going to write something about the evolution of Delegate, Anonymous Method, till Lambda Expression. Here's I will use a build in delegate, Predicate<T> to give the example. My example is simple. There's a collection...
Filed under:
.NET
,
C#
,
C# 3.0
Remove unused using in Visual Studio 2008
by
Wely
Even though, include many "using" namespace will not affect the performance when runtime, but it will affect your Intellisense performance. When you type something, Visual Studio's intellisense will search the associated work you typed with...
Filed under:
.NET
,
VS 2008
Kid's Corner for computer programming
by
Wely
Are you a parent or teacher looking to start your kids learning about how computers and programs work? Or are you a cool kid who wants to create some fun programs and impress your friends and family with your mad skillz?! Check out the Kid's Corner...
Filed under:
.NET
,
Technology
ASP.NET 2.0 FileUpload Problems
by
Wely
I was wondering why I got error when I upload big size file (4 or 5 MB). But when 3.9 MB, it worked well. My colleague told that we have to change a key "AspMaxRequestEntityAllowed" at MetaBase.xml which is located in C:\WINDOWS\system32\inetsrv...
Filed under:
.NET
,
ASP.NET
Have you use Generic’s collection?
by
Wely
We often need collection in our programming. To implement collection, we have two choices: fixed-length collection which is familiarly "array" and dynamic length collection. One of the popular dynamic collections is ArrayList. ArrayList (actually...
Filed under:
.NET
,
C#
ASP.NET AJAX UpdatePanel Compatibility
by
Wely
I have tried using ASP.NET AJAX for few times. Few weeks ago, I use UpdatePanel along with DetailsView to view the details from GridView. One of the DetailsView consist a column for upload file (using FileUpload control). When I tried to upload it, the...
Filed under:
.NET
,
Web
,
Ajax
A practical "polymorphism" example
by
Wely
In my last post, I described what interface and abstract class are, how to create and use them. But, the question is “Why do we need to use interface or abstract class?”, “Is it useful?”, “What if we don’t use them...
Filed under:
.NET
,
C#
Interface VS Abstract Class
by
Wely
There are a lot of confusions, misconception, and misuses about Interface and Abstract Class. Actually the objectives of them are doing polymorphism. Interface Interface is a type perspective like class or structure. You cannot instantiate an object from...
Filed under:
.NET
,
C#