Online Conversion Websites

Sometime or the other you may want to convert your files from one file to other. There whole lot of sites which allows you to do it. Here are a couple of sites which are nice easy to use and no fuss.
youconverit
ZamZar
pdfonline
Comet Docs
 
Enjoy!!!

Using custom serialization to store object information in ViewState

Recently i came across a wierd problem while developing a web user control. I needed to persist some data across page postback’s. I took the ViewState approach, which had been used previously to do the same task.
I had thought that it would be easy as it had been done a multiple times earlier, but [...]

Error codes in Windows API

When using p/invoke to call unmanagged code, you may get some error codes based on the operations you have performed. Most of the time the error codes(system error codes) would be integer and going through the corresponding API documentation doesnt leave you anywhere. So what do you do when faced with this dilemma? Search the [...]