Welcome to AspAdvice
Sign in
|
Join
|
Help
GetWhatYouWant
This Blog
About
Syndication
RSS 2.0
Atom 1.0
Search
Go
Navigation
Home
Blogs
Forums
Photos
Downloads
My Reader
Tags
No tags have been created or used yet.
Recent Posts
SQL - Alternative to FOR XML PATH
ASP.Net - Window form application change / set start up form
Good tools
.Net Compressing file using SharpZipLib
ASP.Net - Javascript onChange does not trigger AutoPostBack
Archives
January 2010 (1)
December 2009 (4)
November 2009 (2)
May 2009 (6)
April 2009 (13)
March 2009 (3)
August 2008 (1)
July 2008 (1)
June 2008 (5)
May 2008 (1)
February 2008 (1)
November 2007 (1)
January 2007 (4)
November 2006 (1)
October 2006 (2)
September 2006 (12)
March 2009 - Posts
Wednesday, March 25, 2009 6:26 PM
Installing Ubuntu in VirtualBox
installing ubuntu - linux into virtual machine in my case using virtualbox i have tried to use microsoft virtual pc but eventually i cannot mount the ubuntu iso file 1. First of all get your installation file prepared - ubuntu download - www.ubuntu.com
Posted by
mo meng
|
0 Comments
Tuesday, March 24, 2009 4:57 PM
SQL - Concatenate rows
Below is an example on how to concatenate mulitple rows into a single column SELECT Substring (Convert(varchar, (SELECT DISTINCT col1 + ',' AS [text()] FROM tbl1 WHERE condition = 'condition1' FOR XML PATH(''))), 0, LEN(Convert(varchar,
Posted by
mo meng
|
0 Comments
Monday, March 09, 2009 12:15 PM
Serialization sample
Serialization - storing an object in my case a dataset as byte and database why i use serialization: To enchance the performance / response time of loading a page whereby it contains a huge set of data stored in a ViewState It needs to take a long time
Posted by
mo meng
|
2 Comments