If you are hosting a Website with Office Live and you need to create additional sites for your company, you should know that you need to first create a different live account and apply for an additional Office Live account. If you buy additional domains with the same Office Live account, all those domains will point to the primary domain on your account. This is only good if you want to create...
1/19/11
Use HTML5 LocalStorage in your Mobile Web Applications
LocalStorage or Dom Storage provides Web pages with the ability to store named key/value pairs locally. This storage is different from the browser cookies. In some systems, it allows Web applications to store from 5MB to 10MB of application data. Unlike cookies, this data is not posted back to the server. It remains locally on the device, and it is persisted even after navigating to another site...
1/17/11
Customize the Build Number in Team Build
If you have used TFS team build, you know that MSBuild creates a default label and build number/name with the following format:
Build Definition Name_YYYYMMDD_#
Where the # is an incremental number for the date. This format does not really provide any information about the version your are building. Nevertheless, The build number can be customized using the BuildNumberOverrideTarget. There...