-
Recent Posts
- How to create and deploy SharePoint 2013 online application
- HTTP Error 503. The service is unavailable
- .NET SDK for Jira to update Jira issue status
- Folder attribute turn Hidden due to Virus or Malware
- The required anti-forgery form field "__RequestVerificationToken" is not present. Ensure that cookies are enabled in your browser.
Archives
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
Categories
Meta
Monthly Archives: January 2010
Java and .NET Web Services Interoperation Training
The slides, Java Web Service and .NET client are all in my skydrive.com. This is session conducted on 15th January 2010. TheWebServicesPlatform.xpsConAppJavaWS.rar JavaWSCalculator2.rar
Posted in Uncategorized
Leave a comment
Antivirus from Microsoft free
One of my biggest problems in the past is where to find antivirus after installing Windows® operating system. Today this is no longer an issue to me because Microsoft has free antivirus for Windows®. To download and play with it: … Continue reading
Posted in Uncategorized
1 Comment
Virtual function in C# in depth
In a simple term, in order to override a function in base class with implementation that function in base class must be virtual. Consider the code below. class MyBase { public void GetData() { int Length = 0; } } … Continue reading
Posted in .Net
Leave a comment
Open / Read Excel content in C#
To read the content in Excel file using C# is not as hard but it is not too easy too. The reason for not so easy to read it is because over the years the syntax to read an Excel … Continue reading
RSS Feed in C# complete code
I was looking for quick way to create a RSS Reader in C# and I found a download in dreamincode.net. Somehow the code has 2 very nice classes without implementation code. Following is the code for console application: RssManager ObjRss … Continue reading
Posted in .Net
Leave a comment