January 20th, 2010
Not sure how many of you have started working seriously with SharePoint 2010. I am pretty impressed with it, and am looking to do more and more work with it in the coming days. Going to try migrating a few test 2007 portals to 2010 and hopefully, the migration story will be a smooth success even for sites with complex customisations.
I have been playing with the API for a while and have migrated a few of the webparts we are working on for 2010. It was quite a smooth process. We are spending more and more time developing some exciting products for 2010, so looking forward to releasing the beta versions in a few months. Stay tuned.
Posted in SharePoint | No Comments »
January 10th, 2010
Wishing everyone a happy 2010. It has been a long time since I blogged. After around 5+ years of blogging, I guess I was a bit burnt out. Personal and professional life was also demanding more time, and I somehow felt less and less inclined to blog. Without any kind of plans, I suddenly felt like checking my blog today. Upgraded to the latest version of Wordpress. Will fix the theme a bit so that it does not look broken. Let’s see how it goes. No promises if I will be blogging regularly. Hopefully I will get a lot of exciting things to write about, as I am playing with SharePoint 2010, Office 2010, Windows and SQL Azure and a lot of fantastic new technologies. If I feel like, I will start blogging again. If not, I guess I need a longer vacation from blogging.
Thanks to everyone who read my blogs in the past. I has been a very exciting experience. Apologies for drifting away from blogging without telling. I did not have any plans for leaving, however personal and professional life took their toll and I just did not have any time to blog. For those who don’t know, I got married in 2007. I started my own company Toolagen Limited in 2008. 2009 had been a very hectic year for work, as a small startup we were struggling to stay alive and grow in the midst of recession. It was a very challenging time, but we grew from strength to strength and now have exciting plans for times ahead. Let’s see where 2010 take us.
Anyways, if you read so far, many thanks. Hope I get time and the motivation to start writing again, and again get a chance to know you all. Till then, wishing everyone a very happy 2010.
Posted in General, SharePoint | No Comments »
June 4th, 2009
I suddenly noticed that Bing.com, Microsoft’s new revolutionary search engine, was now up. It is showing a beta logo, but the search engine is up and running. Have heard lots of good things about it, so going to give it a try for a few days.
Do we have a Google killer here? What do you think?
Posted in General | No Comments »
May 21st, 2009
Hi everyone. After using Typemock on one of my projects, I can definitely say that it is a fantastic product for your unit testing. Have just heard about a promotion which Typemock is running currently to promote their new produt and giving away licences. See the details below:
Unit Testing ASP.NET? ASP.NET unit testing has never been this easy.
Typemock is launching a new product for ASP.NET developers – the ASP.NET Bundle – and for the launch will be giving out FREE licenses to bloggers and their readers.
The ASP.NET Bundle is the ultimate ASP.NET unit testing solution, and offers both Typemock Isolator, a unit test tool and Ivonna, the Isolator add-on for ASP.NET unit testing, for a bargain price.
Typemock Isolator is a leading .NET unit testing tool (C# and VB.NET) for many ‘hard to test’ technologies such as SharePoint, ASP.NET, MVC, WCF, WPF, Silverlight and more. Note that for unit testing Silverlight there is an open source Isolator add-on called SilverUnit.
The first 60 bloggers who will blog this text in their blog and tell us about it, will get a Free Isolator ASP.NET Bundle license (Typemock Isolator + Ivonna). If you post this in an ASP.NET dedicated blog, you’ll get a license automatically (even if more than 60 submit) during the first week of this announcement.
Also 8 bloggers will get an additional 2 licenses (each) to give away to their readers / friends.
Go ahead, click the following link for more information on how to get your free license.
Posted in dotNet | No Comments »
January 30th, 2009
May times when I try to design a XSL against an unknown data stream, I would like to know what all values are available. Here is a nifty XSL which I have been using for a while. ( I am sure there are many versions out there ).
<xsl:for-each select="@*">
   <br/> Name: <xsl:value-of select="name()" /> Value:<xsl:value-of select="." />
</xsl:for-each>Â
It gives a list of all elements with their values. Quite handy to check if you have got the element name wrong etc.
Posted in dotNet | No Comments »
January 15th, 2009
Just came across a nice site to introduce SharePoint to .NET developers. A nice resource area for existing .NET developers who want to get up to speed with SharePoint.
Posted in SharePoint | No Comments »
December 31st, 2008
Finally 2008 is over. What a year it has been. Hoping that 2009 brings lots of hope, prosperity, happiness and joy to everyone. Wishing everyone a very happy 2009
Posted in General | No Comments »
December 11th, 2008
Just heard it over at Spence Harbar’s blog that from January 13th 2009, no support will be provided for SharePoint systems which are not SP1 patched. If you have not already applied SP1, don’t delay and be caught out with an unsupported system.
See: Microsoft Support Lifecycle for their products
Posted in SharePoint | No Comments »
November 27th, 2008
While recently migrating hosting servers, I got an opportunity to re-examine my choice of a blogging engine. I had stopped blogging for a while, and hence was tempted to start anew, however had some good past content which I wanted to preserve for myself.
I initially started blogging with Wordpress, and went thru a painful process to migrate all content to Community Server a few years ago. It was a good system. It still is, but it is meant for very large blogging networks, and not very suitable for a single blog. They do have a new product called Grafitti, however, both suffer from one major problem. A lack of free plugins, themes and tools available from the community. Wordpress on the other has is a fantastic blogging platform, very easy to use and has an abundance of free support to a small blogger like me.
One more major turning point towards Wordpress was the launch of Windows 2008 and IIS7. It now supports URL Rewriting, and hence via Fast CGI it can use mod rewrite to create pretty URL’s
Have a look at this post URL. Am a .NET developer and hence I always host on Windows servers. This was one of the reasons why I had left Wordpress in the first place. So it’s great to be back with Wordpress.
Lookout for more regular posts soon.
Posted in Blogging, General | No Comments »
November 12th, 2008
In my previous blog entry, I showed how to configure ASP.NET to output XHTML to the browsers. However, when the W3C Validator checks the page, ASP.NET does not know the W3C user agent and hence sends out non compliant code. The trick is in the w3cvalidator.browser file available on idunno.org. Just drop the file in your App_Browsers folder and ASP.NET will send out XHTML compliant code to the Validator.
Posted in dotNet | No Comments »